/** */ package simpleStatechart; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Entry'. * * *

* The following features are supported: *

* * * @see simpleStatechart.SimpleStatechartPackage#getEntry() * @model * @generated */ public interface Entry extends EObject { /** * Returns the value of the 'Entry' reference. * *

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

* * @return the value of the 'Entry' reference. * @see #setEntry(State) * @see simpleStatechart.SimpleStatechartPackage#getEntry_Entry() * @model * @generated */ State getEntry(); /** * Sets the value of the '{@link simpleStatechart.Entry#getEntry Entry}' reference. * * * @param value the new value of the 'Entry' reference. * @see #getEntry() * @generated */ void setEntry(State value); } // Entry