/** * <copyright> * </copyright> * * $Id$ */ package no.hal.scxml.scxmlxt; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Symbolic Action</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link no.hal.scxml.scxmlxt.SymbolicAction#getName <em>Name</em>}</li> * <li>{@link no.hal.scxml.scxmlxt.SymbolicAction#getDelay <em>Delay</em>}</li> * </ul> * </p> * * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getSymbolicAction() * @model * @generated */ public interface SymbolicAction extends Action { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getSymbolicAction_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link no.hal.scxml.scxmlxt.SymbolicAction#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Delay</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Delay</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Delay</em>' containment reference. * @see #setDelay(Expression) * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getSymbolicAction_Delay() * @model containment="true" * @generated */ Expression getDelay(); /** * Sets the value of the '{@link no.hal.scxml.scxmlxt.SymbolicAction#getDelay <em>Delay</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Delay</em>' containment reference. * @see #getDelay() * @generated */ void setDelay(Expression value); } // SymbolicAction