/** */ package fr.inria.diverse.minilang; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- 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.minilang.Block#getStatement <em>Statement</em>}</li> * </ul> * * @see fr.inria.diverse.minilang.MinilangPackage#getBlock() * @model * @generated */ public interface Block extends EObject { /** * Returns the value of the '<em><b>Statement</b></em>' containment reference list. * The list contents are of type {@link fr.inria.diverse.minilang.Statement}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Statement</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>Statement</em>' containment reference list. * @see fr.inria.diverse.minilang.MinilangPackage#getBlock_Statement() * @model containment="true" * @generated */ EList<Statement> getStatement(); } // Block