blob: 0a5b30c08dfeb5b1eb30cf79aeb44af2f1d95766 [file] [log] [blame]
/**
*/
package esm;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Machine</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link esm.Machine#getStates <em>States</em>}</li>
* <li>{@link esm.Machine#getTransitions <em>Transitions</em>}</li>
* </ul>
* </p>
*
* @see esm.EsmPackage#getMachine()
* @model
* @generated
*/
public interface Machine extends EObject
{
/**
* Returns the value of the '<em><b>States</b></em>' containment reference list.
* The list contents are of type {@link esm.State}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>States</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>States</em>' containment reference list.
* @see esm.EsmPackage#getMachine_States()
* @model containment="true"
* @generated
*/
EList<State> getStates();
/**
* Returns the value of the '<em><b>Transitions</b></em>' containment reference list.
* The list contents are of type {@link esm.Transition}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Transitions</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>Transitions</em>' containment reference list.
* @see esm.EsmPackage#getMachine_Transitions()
* @model containment="true"
* @generated
*/
EList<Transition> getTransitions();
} // Machine