12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /**
- */
- package ua.ansymo.hintco;
- import org.eclipse.emf.common.util.EList;
- /**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Scenario</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * </p>
- * <ul>
- * <li>{@link ua.ansymo.hintco.Scenario#getCosimunits <em>Cosimunits</em>}</li>
- * </ul>
- *
- * @see ua.ansymo.hintco.HintcoPackage#getScenario()
- * @model abstract="true"
- * @generated
- */
- public interface Scenario extends IDed {
- /**
- * Returns the value of the '<em><b>Cosimunits</b></em>' containment reference list.
- * The list contents are of type {@link ua.ansymo.hintco.UnitInstance}.
- * It is bidirectional and its opposite is '{@link ua.ansymo.hintco.UnitInstance#getScenario <em>Scenario</em>}'.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Cosimunits</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>Cosimunits</em>' containment reference list.
- * @see ua.ansymo.hintco.HintcoPackage#getScenario_Cosimunits()
- * @see ua.ansymo.hintco.UnitInstance#getScenario
- * @model opposite="scenario" containment="true"
- * @generated
- */
- EList<UnitInstance> getCosimunits();
- } // Scenario
|