| /** | |
| * <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>State</b></em>'. | |
| * <!-- end-user-doc --> | |
| * | |
| * <p> | |
| * The following features are supported: | |
| * <ul> | |
| * <li>{@link statemachine.State#getName <em>Name</em>}</li> | |
| * <li>{@link statemachine.State#getIncoming <em>Incoming</em>}</li> | |
| * <li>{@link statemachine.State#getOutgoing <em>Outgoing</em>}</li> | |
| * </ul> | |
| * </p> | |
| * | |
| * @see statemachine.StatemachinePackage#getState() | |
| * @model | |
| * @generated | |
| */ | |
| public interface State extends EObject { | |
| /** | |
| * Returns the value of the '<em><b>Name</b></em>' attribute. | |
| * <!-- begin-user-doc --> | |
| * <p> | |
| * If the meaning of the '<em>Name</em>' attribute isn't clear, | |
| * there really should be more of a description here... | |
| * </p> | |
| * <!-- end-user-doc --> | |
| * @return the value of the '<em>Name</em>' attribute. | |
| * @see #setName(String) | |
| * @see statemachine.StatemachinePackage#getState_Name() | |
| * @model required="true" | |
| * @generated | |
| */ | |
| String getName(); | |
| /** | |
| * Sets the value of the '{@link statemachine.State#getName <em>Name</em>}' attribute. | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @param value the new value of the '<em>Name</em>' attribute. | |
| * @see #getName() | |
| * @generated | |
| */ | |
| void setName(String value); | |
| /** | |
| * Returns the value of the '<em><b>Incoming</b></em>' reference list. | |
| * The list contents are of type {@link statemachine.Transition}. | |
| * It is bidirectional and its opposite is '{@link statemachine.Transition#getTarget <em>Target</em>}'. | |
| * <!-- begin-user-doc --> | |
| * <p> | |
| * If the meaning of the '<em>Incoming</em>' reference list isn't clear, | |
| * there really should be more of a description here... | |
| * </p> | |
| * <!-- end-user-doc --> | |
| * @return the value of the '<em>Incoming</em>' reference list. | |
| * @see statemachine.StatemachinePackage#getState_Incoming() | |
| * @see statemachine.Transition#getTarget | |
| * @model type="statemachine.Transition" opposite="target" | |
| * @generated | |
| */ | |
| EList getIncoming(); | |
| /** | |
| * Returns the value of the '<em><b>Outgoing</b></em>' containment reference list. | |
| * The list contents are of type {@link statemachine.Transition}. | |
| * It is bidirectional and its opposite is '{@link statemachine.Transition#getSource <em>Source</em>}'. | |
| * <!-- begin-user-doc --> | |
| * <p> | |
| * If the meaning of the '<em>Outgoing</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>Outgoing</em>' containment reference list. | |
| * @see statemachine.StatemachinePackage#getState_Outgoing() | |
| * @see statemachine.Transition#getSource | |
| * @model type="statemachine.Transition" opposite="source" containment="true" | |
| * @generated | |
| */ | |
| EList getOutgoing(); | |
| } // State |