/** * * * * $Id$ */ package org.eclipse.etrice.core.genmodel.etricegen; import org.eclipse.emf.ecore.EObject; import org.eclipse.etrice.core.room.State; import org.eclipse.etrice.core.room.Transition; /** * * A representation of the model object 'Transition Chain'. * * *

* The following features are supported: *

*

* * @see org.eclipse.etrice.core.genmodel.etricegen.ETriceGenPackage#getTransitionChain() * @model * @generated */ public interface TransitionChain extends EObject { /** * Returns the value of the 'Transition' reference. * *

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

* * @return the value of the 'Transition' reference. * @see #setTransition(Transition) * @see org.eclipse.etrice.core.genmodel.etricegen.ETriceGenPackage#getTransitionChain_Transition() * @model * @generated */ Transition getTransition(); /** * Sets the value of the '{@link org.eclipse.etrice.core.genmodel.etricegen.TransitionChain#getTransition Transition}' reference. * * * @param value the new value of the 'Transition' reference. * @see #getTransition() * @generated */ void setTransition(Transition value); /** * Returns the value of the 'Skip Entry' attribute. * The default value is "false". * *

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

* * @return the value of the 'Skip Entry' attribute. * @see #setSkipEntry(boolean) * @see org.eclipse.etrice.core.genmodel.etricegen.ETriceGenPackage#getTransitionChain_SkipEntry() * @model default="false" * @generated */ boolean isSkipEntry(); /** * Sets the value of the '{@link org.eclipse.etrice.core.genmodel.etricegen.TransitionChain#isSkipEntry Skip Entry}' attribute. * * * @param value the new value of the 'Skip Entry' attribute. * @see #isSkipEntry() * @generated */ void setSkipEntry(boolean value); /** * * * @model kind="operation" * @generated */ State getStateContext(); /** * * * @model kind="operation" * @generated */ boolean isHandler(); /** * * * @model tcvType="org.eclipse.etrice.core.genmodel.etricegen.ITransitionChainVisitor" * @generated */ String genExecuteChain(ITransitionChainVisitor tcv); } // TransitionChain