/** * <copyright> * </copyright> * * $Id$ */ package no.hal.scxml.scxmlxt; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Abstract State</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link no.hal.scxml.scxmlxt.AbstractState#getStates <em>States</em>}</li> * <li>{@link no.hal.scxml.scxmlxt.AbstractState#getTransitions <em>Transitions</em>}</li> * <li>{@link no.hal.scxml.scxmlxt.AbstractState#getVariables <em>Variables</em>}</li> * </ul> * </p> * * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getAbstractState() * @model abstract="true" * @generated */ public interface AbstractState extends EObject { /** * Returns the value of the '<em><b>States</b></em>' containment reference list. * The list contents are of type {@link no.hal.scxml.scxmlxt.State}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>States</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>States</em>' containment reference list. * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getAbstractState_States() * @model containment="true" * @generated */ EList<State> getStates(); /** * Returns the value of the '<em><b>Transitions</b></em>' containment reference list. * The list contents are of type {@link no.hal.scxml.scxmlxt.AbstractTransition}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Transitions</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>Transitions</em>' containment reference list. * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getAbstractState_Transitions() * @model containment="true" * @generated */ EList<AbstractTransition> getTransitions(); /** * Returns the value of the '<em><b>Variables</b></em>' containment reference list. * The list contents are of type {@link no.hal.scxml.scxmlxt.VarDef}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Variables</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>Variables</em>' containment reference list. * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getAbstractState_Variables() * @model containment="true" * @generated */ EList<VarDef> getVariables(); } // AbstractState