blob: ee7c868b749c420c1e19bb5bd7ac03a3805c0896 [file] [log] [blame]
/**
* Copyright (c) 2007 Borland Software Corporation
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Borland Software Corporation - initial API and implementation
*
*
*
* $Id: DictLiteralPartCS.java,v 1.2 2010/01/29 15:23:41 sboyko Exp $
*/
package org.eclipse.m2m.internal.qvt.oml.cst;
import org.eclipse.ocl.cst.CSTNode;
import org.eclipse.ocl.cst.LiteralExpCS;
import org.eclipse.ocl.cst.OCLExpressionCS;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Dict Literal Part CS</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.m2m.internal.qvt.oml.cst.DictLiteralPartCS#getKey <em>Key</em>}</li>
* <li>{@link org.eclipse.m2m.internal.qvt.oml.cst.DictLiteralPartCS#getValue <em>Value</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.m2m.internal.qvt.oml.cst.CSTPackage#getDictLiteralPartCS()
* @model
* @generated
*/
public interface DictLiteralPartCS extends CSTNode {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright (c) 2007 Borland Software Corporation\r\n\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n \r\nContributors:\r\n Borland Software Corporation - initial API and implementation\r\n\r\n"; //$NON-NLS-1$
/**
* Returns the value of the '<em><b>Key</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Key</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Key</em>' containment reference.
* @see #setKey(LiteralExpCS)
* @see org.eclipse.m2m.internal.qvt.oml.cst.CSTPackage#getDictLiteralPartCS_Key()
* @model containment="true"
* @generated
*/
LiteralExpCS getKey();
/**
* Sets the value of the '{@link org.eclipse.m2m.internal.qvt.oml.cst.DictLiteralPartCS#getKey <em>Key</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Key</em>' containment reference.
* @see #getKey()
* @generated
*/
void setKey(LiteralExpCS value);
/**
* Returns the value of the '<em><b>Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Value</em>' containment reference.
* @see #setValue(OCLExpressionCS)
* @see org.eclipse.m2m.internal.qvt.oml.cst.CSTPackage#getDictLiteralPartCS_Value()
* @model containment="true"
* @generated
*/
OCLExpressionCS getValue();
/**
* Sets the value of the '{@link org.eclipse.m2m.internal.qvt.oml.cst.DictLiteralPartCS#getValue <em>Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' containment reference.
* @see #getValue()
* @generated
*/
void setValue(OCLExpressionCS value);
} // DictLiteralPartCS