blob: 0397f52cdb716368bf7fb115c630a0bbd7cc4864 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Document Reference Related</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A reference to a document .
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.DocumentReferenceRelated#getIdentifier <em>Identifier</em>}</li>
* <li>{@link org.hl7.fhir.DocumentReferenceRelated#getRef <em>Ref</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getDocumentReferenceRelated()
* @model extendedMetaData="name='DocumentReference.Related' kind='elementOnly'"
* @generated
*/
public interface DocumentReferenceRelated extends BackboneElement {
/**
* Returns the value of the '<em><b>Identifier</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Related identifier to this DocumentReference. If both id and ref are present they shall refer to the same thing.
* <!-- end-model-doc -->
* @return the value of the '<em>Identifier</em>' containment reference.
* @see #setIdentifier(Identifier)
* @see org.hl7.fhir.FhirPackage#getDocumentReferenceRelated_Identifier()
* @model containment="true"
* extendedMetaData="kind='element' name='identifier' namespace='##targetNamespace'"
* @generated
*/
Identifier getIdentifier();
/**
* Sets the value of the '{@link org.hl7.fhir.DocumentReferenceRelated#getIdentifier <em>Identifier</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Identifier</em>' containment reference.
* @see #getIdentifier()
* @generated
*/
void setIdentifier(Identifier value);
/**
* Returns the value of the '<em><b>Ref</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Related Resource to this DocumentReference. If both id and ref are present they shall refer to the same thing.
* <!-- end-model-doc -->
* @return the value of the '<em>Ref</em>' containment reference.
* @see #setRef(Reference)
* @see org.hl7.fhir.FhirPackage#getDocumentReferenceRelated_Ref()
* @model containment="true"
* extendedMetaData="kind='element' name='ref' namespace='##targetNamespace'"
* @generated
*/
Reference getRef();
/**
* Sets the value of the '{@link org.hl7.fhir.DocumentReferenceRelated#getRef <em>Ref</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Ref</em>' containment reference.
* @see #getRef()
* @generated
*/
void setRef(Reference value);
} // DocumentReferenceRelated