blob: 89cb3af0551bef88f8fbd7cb205f9fb4e776e11b [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package statemachine;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Region</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link statemachine.Region#getState <em>State</em>}</li>
* <li>{@link statemachine.Region#getInitial <em>Initial</em>}</li>
* </ul>
* </p>
*
* @see statemachine.StatemachinePackage#getRegion()
* @model
* @generated
*/
public interface Region extends EObject {
/**
* Returns the value of the '<em><b>State</b></em>' containment reference list.
* The list contents are of type {@link statemachine.State}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>State</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>State</em>' containment reference list.
* @see statemachine.StatemachinePackage#getRegion_State()
* @model type="statemachine.State" containment="true" required="true"
* @generated
*/
EList getState();
/**
* Returns the value of the '<em><b>Initial</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Initial</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Initial</em>' reference.
* @see #setInitial(State)
* @see statemachine.StatemachinePackage#getRegion_Initial()
* @model required="true"
* @generated
*/
State getInitial();
/**
* Sets the value of the '{@link statemachine.Region#getInitial <em>Initial</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Initial</em>' reference.
* @see #getInitial()
* @generated
*/
void setInitial(State value);
} // Region