blob: 66243484eecbb43b13849312b30d4c695a894800 [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>Transition</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* guard is typed with a boolean operation that have to be defined in the model before using it
* effect is typed by an operation that is owned by the component that is behaviored by the FSM
*
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.RobotML.Transition#getBase_Transition <em>Base Transition</em>}</li>
* <li>{@link org.eclipse.papyrus.RobotML.Transition#getGuard <em>Guard</em>}</li>
* <li>{@link org.eclipse.papyrus.RobotML.Transition#getEffect <em>Effect</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.RobotML.RobotMLPackage#getTransition()
* @model
* @generated
*/
public interface Transition extends EObject {
/**
* Returns the value of the '<em><b>Base Transition</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Transition</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 Transition</em>' reference.
* @see #setBase_Transition(org.eclipse.uml2.uml.Transition)
* @see org.eclipse.papyrus.RobotML.RobotMLPackage#getTransition_Base_Transition()
* @model required="true" ordered="false"
* @generated
*/
org.eclipse.uml2.uml.Transition getBase_Transition();
/**
* Sets the value of the '{@link org.eclipse.papyrus.RobotML.Transition#getBase_Transition <em>Base Transition</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Transition</em>' reference.
* @see #getBase_Transition()
* @generated
*/
void setBase_Transition(org.eclipse.uml2.uml.Transition value);
/**
* Returns the value of the '<em><b>Guard</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Guard</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Guard</em>' reference.
* @see #setGuard(Behavior)
* @see org.eclipse.papyrus.RobotML.RobotMLPackage#getTransition_Guard()
* @model required="true" ordered="false"
* @generated
*/
Behavior getGuard();
/**
* Sets the value of the '{@link org.eclipse.papyrus.RobotML.Transition#getGuard <em>Guard</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Guard</em>' reference.
* @see #getGuard()
* @generated
*/
void setGuard(Behavior value);
/**
* Returns the value of the '<em><b>Effect</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Effect</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Effect</em>' reference.
* @see #setEffect(Behavior)
* @see org.eclipse.papyrus.RobotML.RobotMLPackage#getTransition_Effect()
* @model required="true" ordered="false"
* @generated
*/
Behavior getEffect();
/**
* Sets the value of the '{@link org.eclipse.papyrus.RobotML.Transition#getEffect <em>Effect</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Effect</em>' reference.
* @see #getEffect()
* @generated
*/
void setEffect(Behavior value);
} // Transition