/** */ package fr.inria.diverse.iot2.iot2.iot2; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Block</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link fr.inria.diverse.iot2.iot2.iot2.Block#getStatements <em>Statements</em>}</li> * <li>{@link fr.inria.diverse.iot2.iot2.iot2.Block#getReturnValue <em>Return Value</em>}</li> * </ul> * * @see fr.inria.diverse.iot2.iot2.iot2.Iot2Package#getBlock() * @model * @generated */ public interface Block extends Chunk { /** * Returns the value of the '<em><b>Statements</b></em>' containment reference list. * The list contents are of type {@link fr.inria.diverse.iot2.iot2.iot2.Statement}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Statements</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Statements</em>' containment reference list. * @see fr.inria.diverse.iot2.iot2.iot2.Iot2Package#getBlock_Statements() * @model containment="true" * @generated */ EList<Statement> getStatements(); /** * Returns the value of the '<em><b>Return Value</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Return 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>Return Value</em>' containment reference. * @see #setReturnValue(LastStatement) * @see fr.inria.diverse.iot2.iot2.iot2.Iot2Package#getBlock_ReturnValue() * @model containment="true" * @generated */ LastStatement getReturnValue(); /** * Sets the value of the '{@link fr.inria.diverse.iot2.iot2.iot2.Block#getReturnValue <em>Return Value</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Return Value</em>' containment reference. * @see #getReturnValue() * @generated */ void setReturnValue(LastStatement value); } // Block