/** */ package fr.obeo.intent.specification; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Scenario Element</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link fr.obeo.intent.specification.ScenarioElement#getParameters <em>Parameters</em>}</li> * </ul> * </p> * * @see fr.obeo.intent.specification.SpecificationPackage#getScenarioElement() * @model abstract="true" * @generated */ public interface ScenarioElement extends NamedElement { /** * Returns the value of the '<em><b>Parameters</b></em>' containment reference list. * The list contents are of type {@link fr.obeo.intent.specification.Parameter}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parameters</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>Parameters</em>' containment reference list. * @see fr.obeo.intent.specification.SpecificationPackage#getScenarioElement_Parameters() * @model containment="true" * @generated */ EList<Parameter> getParameters(); } // ScenarioElement