/** */ package hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation; /** * * A representation of the model object 'Boolean Element'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.PartialinterpretationPackage#getBooleanElement() * @model * @generated */ public interface BooleanElement extends PrimitiveElement { /** * 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.viatrasolver.partialinterpretationlanguage.partialinterpretation.PartialinterpretationPackage#getBooleanElement_Value() * @model required="true" * @generated */ boolean isValue(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.viatrasolver.partialinterpretationlanguage.partialinterpretation.BooleanElement#isValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #isValue() * @generated */ void setValue(boolean value); } // BooleanElement