/** * <copyright> * </copyright> * * $Id$ */ package no.hal.scxml.scxmlxt; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Initial Transition</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link no.hal.scxml.scxmlxt.InitialTransition#getAction <em>Action</em>}</li> * </ul> * </p> * * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getInitialTransition() * @model * @generated */ public interface InitialTransition extends EObject { /** * Returns the value of the '<em><b>Action</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Action</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Action</em>' containment reference. * @see #setAction(Action) * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getInitialTransition_Action() * @model containment="true" * @generated */ Action getAction(); /** * Sets the value of the '{@link no.hal.scxml.scxmlxt.InitialTransition#getAction <em>Action</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Action</em>' containment reference. * @see #getAction() * @generated */ void setAction(Action value); } // InitialTransition