blob: 4013762f99890e838f465edb9f5f1b594ae0afe0 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Boolean</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Value of "true" or "false"
* If the element is present, it must have either a @value, an @id, or extensions
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.Boolean#isValue <em>Value</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getBoolean()
* @model extendedMetaData="name='boolean' kind='elementOnly'"
* @generated
*/
public interface Boolean extends Element {
/**
* Returns the value of the '<em><b>Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Value</em>' attribute.
* @see #isSetValue()
* @see #unsetValue()
* @see #setValue(boolean)
* @see org.hl7.fhir.FhirPackage#getBoolean_Value()
* @model unsettable="true" dataType="org.hl7.fhir.BooleanPrimitive"
* extendedMetaData="kind='attribute' name='value'"
* @generated
*/
boolean isValue();
/**
* Sets the value of the '{@link org.hl7.fhir.Boolean#isValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' attribute.
* @see #isSetValue()
* @see #unsetValue()
* @see #isValue()
* @generated
*/
void setValue(boolean value);
/**
* Unsets the value of the '{@link org.hl7.fhir.Boolean#isValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isSetValue()
* @see #isValue()
* @see #setValue(boolean)
* @generated
*/
void unsetValue();
/**
* Returns whether the value of the '{@link org.hl7.fhir.Boolean#isValue <em>Value</em>}' attribute is set.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return whether the value of the '<em>Value</em>' attribute is set.
* @see #unsetValue()
* @see #isValue()
* @see #setValue(boolean)
* @generated
*/
boolean isSetValue();
} // Boolean