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

* The following features are supported: *

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

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

* * @return the value of the 'State' containment reference list. * @see simpleStatechart.SimpleStatechartPackage#getStatechart_State() * @model containment="true" * @generated */ EList getState(); /** * Returns the value of the 'Entry' containment reference. * *

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

* * @return the value of the 'Entry' containment reference. * @see #setEntry(Entry) * @see simpleStatechart.SimpleStatechartPackage#getStatechart_Entry() * @model containment="true" required="true" * @generated */ Entry getEntry(); /** * Sets the value of the '{@link simpleStatechart.Statechart#getEntry Entry}' containment reference. * * * @param value the new value of the 'Entry' containment reference. * @see #getEntry() * @generated */ void setEntry(Entry value); } // Statechart