/** * <copyright> * </copyright> * * $Id$ */ package no.hal.scxml.scxmlxt; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Boolean Literal</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link no.hal.scxml.scxmlxt.BooleanLiteral#isBooleanValue <em>Boolean Value</em>}</li> * </ul> * </p> * * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getBooleanLiteral() * @model * @generated */ public interface BooleanLiteral extends Literal { /** * Returns the value of the '<em><b>Boolean Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Boolean 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>Boolean Value</em>' attribute. * @see #setBooleanValue(boolean) * @see no.hal.scxml.scxmlxt.ScxmlxtPackage#getBooleanLiteral_BooleanValue() * @model * @generated */ boolean isBooleanValue(); /** * Sets the value of the '{@link no.hal.scxml.scxmlxt.BooleanLiteral#isBooleanValue <em>Boolean Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Boolean Value</em>' attribute. * @see #isBooleanValue() * @generated */ void setBooleanValue(boolean value); } // BooleanLiteral