blob: a80056c8b4c8cfcb20d2bc28b2f84ade9854bfe7 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Concept Map Depends On</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A statement of relationships from one set of concepts to one or more other concepts - either code systems or data elements, or classes in class models.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.ConceptMapDependsOn#getElement <em>Element</em>}</li>
* <li>{@link org.hl7.fhir.ConceptMapDependsOn#getCodeSystem <em>Code System</em>}</li>
* <li>{@link org.hl7.fhir.ConceptMapDependsOn#getCode <em>Code</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getConceptMapDependsOn()
* @model extendedMetaData="name='ConceptMap.DependsOn' kind='elementOnly'"
* @generated
*/
public interface ConceptMapDependsOn extends BackboneElement {
/**
* Returns the value of the '<em><b>Element</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A reference to a specific concept that holds a coded value. This can be an element in a FHIR resource, or a specific reference to a data element in a different specification (e.g. HL7 v2) or a general reference to a kind of data field, or a reference to a value set with an appropriately narrow definition.
* <!-- end-model-doc -->
* @return the value of the '<em>Element</em>' containment reference.
* @see #setElement(Uri)
* @see org.hl7.fhir.FhirPackage#getConceptMapDependsOn_Element()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='element' namespace='##targetNamespace'"
* @generated
*/
Uri getElement();
/**
* Sets the value of the '{@link org.hl7.fhir.ConceptMapDependsOn#getElement <em>Element</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Element</em>' containment reference.
* @see #getElement()
* @generated
*/
void setElement(Uri value);
/**
* Returns the value of the '<em><b>Code System</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* An absolute URI that identifies the code system of the dependency code (if the source/dependency is a value set that crosses code systems).
* <!-- end-model-doc -->
* @return the value of the '<em>Code System</em>' containment reference.
* @see #setCodeSystem(Uri)
* @see org.hl7.fhir.FhirPackage#getConceptMapDependsOn_CodeSystem()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='codeSystem' namespace='##targetNamespace'"
* @generated
*/
Uri getCodeSystem();
/**
* Sets the value of the '{@link org.hl7.fhir.ConceptMapDependsOn#getCodeSystem <em>Code System</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Code System</em>' containment reference.
* @see #getCodeSystem()
* @generated
*/
void setCodeSystem(Uri value);
/**
* Returns the value of the '<em><b>Code</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Identity (code or path) or the element/item/ValueSet that the map depends on / refers to.
* <!-- end-model-doc -->
* @return the value of the '<em>Code</em>' containment reference.
* @see #setCode(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getConceptMapDependsOn_Code()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='code' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getCode();
/**
* Sets the value of the '{@link org.hl7.fhir.ConceptMapDependsOn#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(org.hl7.fhir.String value);
} // ConceptMapDependsOn