blob: 6506dfa9c5e9ea0b5eec85a288c84a4fc0bcfae4 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Body Site</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Record details about the anatomical location of a specimen or body part. This resource may be used when a coded concept does not provide the necessary detail needed for the use case.
* 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.BodySite#getPatient <em>Patient</em>}</li>
* <li>{@link org.hl7.fhir.BodySite#getIdentifier <em>Identifier</em>}</li>
* <li>{@link org.hl7.fhir.BodySite#getCode <em>Code</em>}</li>
* <li>{@link org.hl7.fhir.BodySite#getModifier <em>Modifier</em>}</li>
* <li>{@link org.hl7.fhir.BodySite#getDescription <em>Description</em>}</li>
* <li>{@link org.hl7.fhir.BodySite#getImage <em>Image</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getBodySite()
* @model extendedMetaData="name='BodySite' kind='elementOnly'"
* @generated
*/
public interface BodySite extends DomainResource {
/**
* Returns the value of the '<em><b>Patient</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The person to which the body site belongs.
* <!-- end-model-doc -->
* @return the value of the '<em>Patient</em>' containment reference.
* @see #setPatient(Reference)
* @see org.hl7.fhir.FhirPackage#getBodySite_Patient()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='patient' namespace='##targetNamespace'"
* @generated
*/
Reference getPatient();
/**
* Sets the value of the '{@link org.hl7.fhir.BodySite#getPatient <em>Patient</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Patient</em>' containment reference.
* @see #getPatient()
* @generated
*/
void setPatient(Reference value);
/**
* Returns the value of the '<em><b>Identifier</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.Identifier}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Identifier for this instance of the anatomical location.
* <!-- end-model-doc -->
* @return the value of the '<em>Identifier</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getBodySite_Identifier()
* @model containment="true"
* extendedMetaData="kind='element' name='identifier' namespace='##targetNamespace'"
* @generated
*/
EList<Identifier> getIdentifier();
/**
* Returns the value of the '<em><b>Code</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Named anatomical location - ideally coded where possible.
* <!-- end-model-doc -->
* @return the value of the '<em>Code</em>' containment reference.
* @see #setCode(CodeableConcept)
* @see org.hl7.fhir.FhirPackage#getBodySite_Code()
* @model containment="true"
* extendedMetaData="kind='element' name='code' namespace='##targetNamespace'"
* @generated
*/
CodeableConcept getCode();
/**
* Sets the value of the '{@link org.hl7.fhir.BodySite#getCode <em>Code</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Code</em>' containment reference.
* @see #getCode()
* @generated
*/
void setCode(CodeableConcept value);
/**
* Returns the value of the '<em><b>Modifier</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.CodeableConcept}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Modifier to refine the anatomical location. These include modifiers for laterality, relative location, directionality, number, and plane.
* <!-- end-model-doc -->
* @return the value of the '<em>Modifier</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getBodySite_Modifier()
* @model containment="true"
* extendedMetaData="kind='element' name='modifier' namespace='##targetNamespace'"
* @generated
*/
EList<CodeableConcept> getModifier();
/**
* Returns the value of the '<em><b>Description</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Description of anatomical location.
* <!-- end-model-doc -->
* @return the value of the '<em>Description</em>' containment reference.
* @see #setDescription(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getBodySite_Description()
* @model containment="true"
* extendedMetaData="kind='element' name='description' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getDescription();
/**
* Sets the value of the '{@link org.hl7.fhir.BodySite#getDescription <em>Description</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description</em>' containment reference.
* @see #getDescription()
* @generated
*/
void setDescription(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Image</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.Attachment}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Image or images used to identify a location.
* <!-- end-model-doc -->
* @return the value of the '<em>Image</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getBodySite_Image()
* @model containment="true"
* extendedMetaData="kind='element' name='image' namespace='##targetNamespace'"
* @generated
*/
EList<Attachment> getImage();
} // BodySite