org.openxma.dsl.dom.model.BooleanLiteralValue Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
/**
*
* A representation of the model object 'Boolean Literal Value'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.BooleanLiteralValue#isIsTrue Is True}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getBooleanLiteralValue()
* @model
* @generated
*/
public interface BooleanLiteralValue extends LiteralValue {
/**
* Returns the value of the 'Is True' attribute.
*
*
* If the meaning of the 'Is True' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Is True' attribute.
* @see #setIsTrue(boolean)
* @see org.openxma.dsl.dom.DomPackage#getBooleanLiteralValue_IsTrue()
* @model
* @generated
*/
boolean isIsTrue();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.BooleanLiteralValue#isIsTrue Is True}' attribute.
*
*
* @param value the new value of the 'Is True' attribute.
* @see #isIsTrue()
* @generated
*/
void setIsTrue(boolean value);
} // BooleanLiteralValue