/** * * * */ package org.eclipse.papyrus.alf.alf; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Test'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.alf.alf.AlfPackage#getTest() * @model * @generated */ public interface Test extends EObject { /** * Returns the value of the 'Expression' containment reference list. * The list contents are of type {@link org.eclipse.papyrus.alf.alf.Expression}. * *

* If the meaning of the 'Expression' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Expression' containment reference list. * @see org.eclipse.papyrus.alf.alf.AlfPackage#getTest_Expression() * @model containment="true" * @generated */ EList getExpression(); /** * Returns the value of the 'Assign Expression' containment reference list. * The list contents are of type {@link org.eclipse.papyrus.alf.alf.AssignmentCompletion}. * *

* If the meaning of the 'Assign Expression' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Assign Expression' containment reference list. * @see org.eclipse.papyrus.alf.alf.AlfPackage#getTest_AssignExpression() * @model containment="true" * @generated */ EList getAssignExpression(); /** * Returns the value of the 'Statements' containment reference list. * The list contents are of type {@link org.eclipse.papyrus.alf.alf.Statement}. * *

* If the meaning of the 'Statements' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Statements' containment reference list. * @see org.eclipse.papyrus.alf.alf.AlfPackage#getTest_Statements() * @model containment="true" * @generated */ EList getStatements(); /** * Returns the value of the 'Block' containment reference. * *

* If the meaning of the 'Block' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Block' containment reference. * @see #setBlock(Block) * @see org.eclipse.papyrus.alf.alf.AlfPackage#getTest_Block() * @model containment="true" * @generated */ Block getBlock(); /** * Sets the value of the '{@link org.eclipse.papyrus.alf.alf.Test#getBlock Block}' containment reference. * * * @param value the new value of the 'Block' containment reference. * @see #getBlock() * @generated */ void setBlock(Block value); } // Test