/** */ package 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: * <ul> * <li>{@link statemachine.Transition#getStart <em>Start</em>}</li> * <li>{@link statemachine.Transition#getEnd <em>End</em>}</li> * <li>{@link statemachine.Transition#getLabel <em>Label</em>}</li> * </ul> * </p> * * @see statemachine.StatemachinePackage#getTransition() * @model * @generated */ public interface Transition extends EObject { /** * Returns the value of the '<em><b>Start</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Start</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Start</em>' reference. * @see #setStart(State) * @see statemachine.StatemachinePackage#getTransition_Start() * @model required="true" * @generated */ State getStart(); /** * Sets the value of the '{@link statemachine.Transition#getStart <em>Start</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Start</em>' reference. * @see #getStart() * @generated */ void setStart(State value); /** * Returns the value of the '<em><b>End</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>End</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>End</em>' reference. * @see #setEnd(State) * @see statemachine.StatemachinePackage#getTransition_End() * @model required="true" * @generated */ State getEnd(); /** * Sets the value of the '{@link statemachine.Transition#getEnd <em>End</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>End</em>' reference. * @see #getEnd() * @generated */ void setEnd(State value); /** * Returns the value of the '<em><b>Label</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Label</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Label</em>' attribute. * @see #setLabel(Object) * @see statemachine.StatemachinePackage#getTransition_Label() * @model * @generated */ Object getLabel(); /** * Sets the value of the '{@link statemachine.Transition#getLabel <em>Label</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Label</em>' attribute. * @see #getLabel() * @generated */ void setLabel(Object value); } // Transition