/** * <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>Abstract Transition</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link no.hal.scxml.scxmlxt.AbstractTransition#getEvent <em>Event</em>}</li> * <li>{@link no.hal.scxml.scxmlxt.AbstractTransition#getCondition <em>Condition</em>}</li> * <li>{@link no.hal.scxml.scxmlxt.AbstractTransition#getAction <em>Action</em>}</li> * </ul> * </p> * * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getAbstractTransition() * @model abstract="true" * @generated */ public interface AbstractTransition extends EObject { /** * Returns the value of the '<em><b>Event</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Event</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>Event</em>' containment reference. * @see #setEvent(Event) * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getAbstractTransition_Event() * @model containment="true" * @generated */ Event getEvent(); /** * Sets the value of the '{@link no.hal.scxml.scxmlxt.AbstractTransition#getEvent <em>Event</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Event</em>' containment reference. * @see #getEvent() * @generated */ void setEvent(Event value); /** * Returns the value of the '<em><b>Condition</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Condition</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>Condition</em>' containment reference. * @see #setCondition(Condition) * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getAbstractTransition_Condition() * @model containment="true" * @generated */ Condition getCondition(); /** * Sets the value of the '{@link no.hal.scxml.scxmlxt.AbstractTransition#getCondition <em>Condition</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Condition</em>' containment reference. * @see #getCondition() * @generated */ void setCondition(Condition value); /** * 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#getAbstractTransition_Action() * @model containment="true" * @generated */ Action getAction(); /** * Sets the value of the '{@link no.hal.scxml.scxmlxt.AbstractTransition#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); } // AbstractTransition