blob: 6005ccc77cf86ea04340405dffee16d3e8e01d01 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2007, 2008 E.D.Willink and others.
* 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:
* E.D.Willink - initial API and implementation
*
* </copyright>
*
* $Id: TupleLiteralPart.java,v 1.1 2008/07/23 09:56:31 qglineur Exp $
*/
package org.eclipse.qvt.declarative.emof.EssentialOCL;
import org.eclipse.qvt.declarative.emof.EMOF.Property;
import org.eclipse.qvt.declarative.emof.EMOF.TypedElement;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Tuple Literal Part</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.qvt.declarative.emof.EssentialOCL.TupleLiteralPart#getAttribute <em>Attribute</em>}</li>
* <li>{@link org.eclipse.qvt.declarative.emof.EssentialOCL.TupleLiteralPart#getTupleLiteralExp <em>Tuple Literal Exp</em>}</li>
* <li>{@link org.eclipse.qvt.declarative.emof.EssentialOCL.TupleLiteralPart#getValue <em>Value</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.qvt.declarative.emof.EssentialOCL.EssentialOCLPackage#getTupleLiteralPart()
* @model
* @generated
*/
public interface TupleLiteralPart extends TypedElement {
/**
* Returns the value of the '<em><b>Attribute</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Attribute</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Attribute</em>' reference.
* @see #setAttribute(Property)
* @see org.eclipse.qvt.declarative.emof.EssentialOCL.EssentialOCLPackage#getTupleLiteralPart_Attribute()
* @model
* @generated
*/
Property getAttribute();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.emof.EssentialOCL.TupleLiteralPart#getAttribute <em>Attribute</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Attribute</em>' reference.
* @see #getAttribute()
* @generated
*/
void setAttribute(Property value);
/**
* Returns the value of the '<em><b>Tuple Literal Exp</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.qvt.declarative.emof.EssentialOCL.TupleLiteralExp#getPart <em>Part</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Tuple Literal Exp</em>' container reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Tuple Literal Exp</em>' container reference.
* @see #setTupleLiteralExp(TupleLiteralExp)
* @see org.eclipse.qvt.declarative.emof.EssentialOCL.EssentialOCLPackage#getTupleLiteralPart_TupleLiteralExp()
* @see org.eclipse.qvt.declarative.emof.EssentialOCL.TupleLiteralExp#getPart
* @model opposite="part"
* @generated
*/
TupleLiteralExp getTupleLiteralExp();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.emof.EssentialOCL.TupleLiteralPart#getTupleLiteralExp <em>Tuple Literal Exp</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Tuple Literal Exp</em>' container reference.
* @see #getTupleLiteralExp()
* @generated
*/
void setTupleLiteralExp(TupleLiteralExp 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(OclExpression)
* @see org.eclipse.qvt.declarative.emof.EssentialOCL.EssentialOCLPackage#getTupleLiteralPart_Value()
* @model containment="true" required="true"
* @generated
*/
OclExpression getValue();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.emof.EssentialOCL.TupleLiteralPart#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(OclExpression value);
} // TupleLiteralPart