/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage; /** * * A representation of the model object 'Bool Literal'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getBoolLiteral() * @model * @generated */ public interface BoolLiteral extends AtomicTerm { /** * Returns the value of the 'Value' attribute. * *

* If the meaning of the 'Value' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Value' attribute. * @see #setValue(boolean) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getBoolLiteral_Value() * @model required="true" * @generated */ boolean isValue(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.BoolLiteral#isValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #isValue() * @generated */ void setValue(boolean value); } // BoolLiteral