blob: 39113e02a4ff87483e3298ee8221a67614177786 [file] [log] [blame]
/**
*/
package SampleModel;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Model</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link SampleModel.Model#getRunnables <em>Runnables</em>}</li>
* <li>{@link SampleModel.Model#getLabels <em>Labels</em>}</li>
* <li>{@link SampleModel.Model#getMemories <em>Memories</em>}</li>
* <li>{@link SampleModel.Model#getSchedulers <em>Schedulers</em>}</li>
* </ul>
*
* @see SampleModel.SampleModelPackage#getModel()
* @model
* @generated
*/
public interface Model extends EObject {
/**
* Returns the value of the '<em><b>Runnables</b></em>' containment reference list.
* The list contents are of type {@link SampleModel.Runnable}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Runnables</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>Runnables</em>' containment reference list.
* @see SampleModel.SampleModelPackage#getModel_Runnables()
* @model containment="true"
* @generated
*/
EList<SampleModel.Runnable> getRunnables();
/**
* Returns the value of the '<em><b>Labels</b></em>' containment reference list.
* The list contents are of type {@link SampleModel.Label}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Labels</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>Labels</em>' containment reference list.
* @see SampleModel.SampleModelPackage#getModel_Labels()
* @model containment="true"
* @generated
*/
EList<Label> getLabels();
/**
* Returns the value of the '<em><b>Memories</b></em>' containment reference list.
* The list contents are of type {@link SampleModel.Memory}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Memories</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>Memories</em>' containment reference list.
* @see SampleModel.SampleModelPackage#getModel_Memories()
* @model containment="true"
* @generated
*/
EList<Memory> getMemories();
/**
* Returns the value of the '<em><b>Schedulers</b></em>' containment reference list.
* The list contents are of type {@link SampleModel.Scheduler}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Schedulers</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>Schedulers</em>' containment reference list.
* @see SampleModel.SampleModelPackage#getModel_Schedulers()
* @model containment="true"
* @generated
*/
EList<Scheduler> getSchedulers();
} // Model