blob: 7b99caa71c6dc54ac6bc375d6bdb0f57ba256052 [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 concepts in code systems, or data element/data element concepts, or classes in class models.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.ConceptMapDependsOn#getProperty <em>Property</em>}</li>
* <li>{@link org.hl7.fhir.ConceptMapDependsOn#getSystem <em>System</em>}</li>
* <li>{@link org.hl7.fhir.ConceptMapDependsOn#getValue <em>Value</em>}</li>
* <li>{@link org.hl7.fhir.ConceptMapDependsOn#getDisplay <em>Display</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>Property</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A reference to an element that holds a coded value that corresponds to a code system property. The idea is that the information model carries an element somewhere that is labeled to correspond with a code system property.
* <!-- end-model-doc -->
* @return the value of the '<em>Property</em>' containment reference.
* @see #setProperty(Uri)
* @see org.hl7.fhir.FhirPackage#getConceptMapDependsOn_Property()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='property' namespace='##targetNamespace'"
* @generated
*/
Uri getProperty();
/**
* Sets the value of the '{@link org.hl7.fhir.ConceptMapDependsOn#getProperty <em>Property</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Property</em>' containment reference.
* @see #getProperty()
* @generated
*/
void setProperty(Uri value);
/**
* Returns the value of the '<em><b>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>System</em>' containment reference.
* @see #setSystem(Canonical)
* @see org.hl7.fhir.FhirPackage#getConceptMapDependsOn_System()
* @model containment="true"
* extendedMetaData="kind='element' name='system' namespace='##targetNamespace'"
* @generated
*/
Canonical getSystem();
/**
* Sets the value of the '{@link org.hl7.fhir.ConceptMapDependsOn#getSystem <em>System</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>System</em>' containment reference.
* @see #getSystem()
* @generated
*/
void setSystem(Canonical value);
/**
* Returns the value of the '<em><b>Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Identity (code or path) or the element/item/ValueSet/text that the map depends on / refers to.
* <!-- end-model-doc -->
* @return the value of the '<em>Value</em>' containment reference.
* @see #setValue(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getConceptMapDependsOn_Value()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='value' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getValue();
/**
* Sets the value of the '{@link org.hl7.fhir.ConceptMapDependsOn#getValue <em>Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' containment reference.
* @see #getValue()
* @generated
*/
void setValue(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Display</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The display for the code. The display is only provided to help editors when editing the concept map.
* <!-- end-model-doc -->
* @return the value of the '<em>Display</em>' containment reference.
* @see #setDisplay(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getConceptMapDependsOn_Display()
* @model containment="true"
* extendedMetaData="kind='element' name='display' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getDisplay();
/**
* Sets the value of the '{@link org.hl7.fhir.ConceptMapDependsOn#getDisplay <em>Display</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Display</em>' containment reference.
* @see #getDisplay()
* @generated
*/
void setDisplay(org.hl7.fhir.String value);
} // ConceptMapDependsOn