blob: 71a837f57869d2fe1eae577b6fa980cbc4072595 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 David Carlson and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* David Carlson (Clinical Cloud Solutions, LLC) - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.mdht.uml.fhir.core.datatype;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Boolean</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
*
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.Boolean#isValue <em>Value</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getBoolean()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='boolean'"
* @generated
*/
public interface Boolean extends DataType {
/**
* 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 #setValue(boolean)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getBoolean_Value()
* @model dataType="org.eclipse.emf.ecore.xml.type.Boolean"
* extendedMetaData="kind='attribute'"
* @generated
*/
boolean isValue();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.Boolean#isValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' attribute.
* @see #isValue()
* @generated
*/
void setValue(boolean value);
} // Boolean