blob: 884980e19f8b59025ebe1fa6637a5e73af81ec54 [file] [log] [blame]
/**
*/
package org.eclipse.papyrus.RobotML;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.uml2.uml.Behavior;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>State</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* When a state is activated, a behavior is activated and executed.
* It is possible to associate more one behavior to the state. But the question is how to define the order of execution of the behaviors?
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.RobotML.State#getBase_State <em>Base State</em>}</li>
* <li>{@link org.eclipse.papyrus.RobotML.State#getBehavior <em>Behavior</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.RobotML.RobotMLPackage#getState()
* @model
* @generated
*/
public interface State extends EObject {
/**
* Returns the value of the '<em><b>Base State</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base State</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Base State</em>' reference.
* @see #setBase_State(org.eclipse.uml2.uml.State)
* @see org.eclipse.papyrus.RobotML.RobotMLPackage#getState_Base_State()
* @model required="true" ordered="false"
* @generated
*/
org.eclipse.uml2.uml.State getBase_State();
/**
* Sets the value of the '{@link org.eclipse.papyrus.RobotML.State#getBase_State <em>Base State</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base State</em>' reference.
* @see #getBase_State()
* @generated
*/
void setBase_State(org.eclipse.uml2.uml.State value);
/**
* Returns the value of the '<em><b>Behavior</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Behavior</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Behavior</em>' reference.
* @see #setBehavior(Behavior)
* @see org.eclipse.papyrus.RobotML.RobotMLPackage#getState_Behavior()
* @model required="true" ordered="false"
* @generated
*/
Behavior getBehavior();
/**
* Sets the value of the '{@link org.eclipse.papyrus.RobotML.State#getBehavior <em>Behavior</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Behavior</em>' reference.
* @see #getBehavior()
* @generated
*/
void setBehavior(Behavior value);
} // State