blob: b7b14760ef0ed35dcc25bf90a4bd5cc687476c61 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 David A Carlson.
* 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 A Carlson (Clinical Cloud Solutions, LLC) - initial API and implementation
*******************************************************************************/
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Answer Format</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* The expected format of an answer.
* 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.AnswerFormat#getValue <em>Value</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getAnswerFormat()
* @model extendedMetaData="name='AnswerFormat' kind='elementOnly'"
* @generated
*/
public interface AnswerFormat extends Element {
/**
* Returns the value of the '<em><b>Value</b></em>' attribute.
* The literals are from the enumeration {@link org.hl7.fhir.AnswerFormatList}.
* <!-- 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 org.hl7.fhir.AnswerFormatList
* @see #isSetValue()
* @see #unsetValue()
* @see #setValue(AnswerFormatList)
* @see org.hl7.fhir.FhirPackage#getAnswerFormat_Value()
* @model unsettable="true"
* extendedMetaData="kind='attribute' name='value'"
* @generated
*/
AnswerFormatList getValue();
/**
* Sets the value of the '{@link org.hl7.fhir.AnswerFormat#getValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' attribute.
* @see org.hl7.fhir.AnswerFormatList
* @see #isSetValue()
* @see #unsetValue()
* @see #getValue()
* @generated
*/
void setValue(AnswerFormatList value);
/**
* Unsets the value of the '{@link org.hl7.fhir.AnswerFormat#getValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isSetValue()
* @see #getValue()
* @see #setValue(AnswerFormatList)
* @generated
*/
void unsetValue();
/**
* Returns whether the value of the '{@link org.hl7.fhir.AnswerFormat#getValue <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 #getValue()
* @see #setValue(AnswerFormatList)
* @generated
*/
boolean isSetValue();
} // AnswerFormat