/** * <copyright> * </copyright> * * $Id$ */ package no.hal.scxml.scxmlxt; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Script Event</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link no.hal.scxml.scxmlxt.ScriptEvent#getScript <em>Script</em>}</li> * </ul> * </p> * * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getScriptEvent() * @model * @generated */ public interface ScriptEvent extends Event { /** * Returns the value of the '<em><b>Script</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Script</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Script</em>' attribute. * @see #setScript(String) * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getScriptEvent_Script() * @model * @generated */ String getScript(); /** * Sets the value of the '{@link no.hal.scxml.scxmlxt.ScriptEvent#getScript <em>Script</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Script</em>' attribute. * @see #getScript() * @generated */ void setScript(String value); } // ScriptEvent