blob: 2763e24e565f8738e904966b2c4af71b7526a9c9 [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.resource;
import org.eclipse.mdht.uml.fhir.core.datatype.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.CodeableConcept;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Patient Communication</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.PatientCommunication#getLanguage <em>Language</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.PatientCommunication#getPreferred <em>Preferred</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getPatientCommunication()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Patient_Communication'"
* @generated
*/
public interface PatientCommunication extends BackboneElement {
/**
* Returns the value of the '<em><b>Language</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Language</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Language</em>' reference.
* @see #setLanguage(CodeableConcept)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getPatientCommunication_Language()
* @model required="true"
* @generated
*/
CodeableConcept getLanguage();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.PatientCommunication#getLanguage <em>Language</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Language</em>' reference.
* @see #getLanguage()
* @generated
*/
void setLanguage(CodeableConcept value);
/**
* Returns the value of the '<em><b>Preferred</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Preferred</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Preferred</em>' reference.
* @see #setPreferred(org.eclipse.mdht.uml.fhir.core.datatype.Boolean)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getPatientCommunication_Preferred()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.Boolean getPreferred();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.PatientCommunication#getPreferred <em>Preferred</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Preferred</em>' reference.
* @see #getPreferred()
* @generated
*/
void setPreferred(org.eclipse.mdht.uml.fhir.core.datatype.Boolean value);
} // PatientCommunication