/** * <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>Var Def</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link no.hal.scxml.scxmlxt.VarDef#getName <em>Name</em>}</li> * <li>{@link no.hal.scxml.scxmlxt.VarDef#getInit <em>Init</em>}</li> * </ul> * </p> * * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getVarDef() * @model * @generated */ public interface VarDef extends Typed { /** * 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#getVarDef_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link no.hal.scxml.scxmlxt.VarDef#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>Init</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Init</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>Init</em>' containment reference. * @see #setInit(Expression) * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getVarDef_Init() * @model containment="true" * @generated */ Expression getInit(); /** * Sets the value of the '{@link no.hal.scxml.scxmlxt.VarDef#getInit <em>Init</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Init</em>' containment reference. * @see #getInit() * @generated */ void setInit(Expression value); } // VarDef