blob: 4e2167b98cda43fecbaee0d38e0b5aec7c380814 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Patient Communication</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Demographics and other administrative information about an individual or animal receiving care or other health-related services.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.PatientCommunication#getLanguage <em>Language</em>}</li>
* <li>{@link org.hl7.fhir.PatientCommunication#getPreferred <em>Preferred</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getPatientCommunication()
* @model extendedMetaData="name='Patient.Communication' kind='elementOnly'"
* @generated
*/
public interface PatientCommunication extends BackboneElement {
/**
* Returns the value of the '<em><b>Language</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The ISO-639-1 alpha 2 code in lower case for the language, optionally followed by a hyphen and the ISO-3166-1 alpha 2 code for the region in upper case; e.g. "en" for English, or "en-US" for American English versus "en-EN" for England English.
* <!-- end-model-doc -->
* @return the value of the '<em>Language</em>' containment reference.
* @see #setLanguage(CodeableConcept)
* @see org.hl7.fhir.FhirPackage#getPatientCommunication_Language()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='language' namespace='##targetNamespace'"
* @generated
*/
CodeableConcept getLanguage();
/**
* Sets the value of the '{@link org.hl7.fhir.PatientCommunication#getLanguage <em>Language</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Language</em>' containment reference.
* @see #getLanguage()
* @generated
*/
void setLanguage(CodeableConcept value);
/**
* Returns the value of the '<em><b>Preferred</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Indicates whether or not the patient prefers this language (over other languages he masters up a certain level).
* <!-- end-model-doc -->
* @return the value of the '<em>Preferred</em>' containment reference.
* @see #setPreferred(org.hl7.fhir.Boolean)
* @see org.hl7.fhir.FhirPackage#getPatientCommunication_Preferred()
* @model containment="true"
* extendedMetaData="kind='element' name='preferred' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.Boolean getPreferred();
/**
* Sets the value of the '{@link org.hl7.fhir.PatientCommunication#getPreferred <em>Preferred</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Preferred</em>' containment reference.
* @see #getPreferred()
* @generated
*/
void setPreferred(org.hl7.fhir.Boolean value);
} // PatientCommunication