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