blob: f786cd9af29d67bc95f136f7166dd465d0cc5bd4 [file] [log] [blame]
/**
*/
package org.eclipse.fx.xtext.statemachine.statemachine;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Transition</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.fx.xtext.statemachine.statemachine.Transition#getCondition <em>Condition</em>}</li>
* <li>{@link org.eclipse.fx.xtext.statemachine.statemachine.Transition#getState <em>State</em>}</li>
* </ul>
*
* @see org.eclipse.fx.xtext.statemachine.statemachine.StatemachinePackage#getTransition()
* @model
* @generated
*/
public interface Transition extends EObject
{
/**
* Returns the value of the '<em><b>Condition</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Condition</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Condition</em>' containment reference.
* @see #setCondition(Condition)
* @see org.eclipse.fx.xtext.statemachine.statemachine.StatemachinePackage#getTransition_Condition()
* @model containment="true"
* @generated
*/
Condition getCondition();
/**
* Sets the value of the '{@link org.eclipse.fx.xtext.statemachine.statemachine.Transition#getCondition <em>Condition</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Condition</em>' containment reference.
* @see #getCondition()
* @generated
*/
void setCondition(Condition value);
/**
* Returns the value of the '<em><b>State</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>State</em>' reference.
* @see #setState(State)
* @see org.eclipse.fx.xtext.statemachine.statemachine.StatemachinePackage#getTransition_State()
* @model
* @generated
*/
State getState();
/**
* Sets the value of the '{@link org.eclipse.fx.xtext.statemachine.statemachine.Transition#getState <em>State</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>State</em>' reference.
* @see #getState()
* @generated
*/
void setState(State value);
} // Transition