/** */ package simpleStatechart; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'State'. * * *

* The following features are supported: *

* * * @see simpleStatechart.SimpleStatechartPackage#getState() * @model * @generated */ public interface State extends EObject { /** * Returns the value of the 'Next' reference list. * The list contents are of type {@link simpleStatechart.State}. * *

* If the meaning of the 'Next' reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Next' reference list. * @see simpleStatechart.SimpleStatechartPackage#getState_Next() * @model * @generated */ EList getNext(); } // State