blob: 348dd68aeae7349f854fdad7a52515b922aa7d50 [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>Concept Map Element</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.ConceptMapElement#getCode <em>Code</em>}</li>
* <li>{@link org.hl7.fhir.ConceptMapElement#getDisplay <em>Display</em>}</li>
* <li>{@link org.hl7.fhir.ConceptMapElement#getTarget <em>Target</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getConceptMapElement()
* @model extendedMetaData="name='ConceptMap.Element' kind='elementOnly'"
* @generated
*/
public interface ConceptMapElement extends BackboneElement {
/**
* 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 being mapped.
* <!-- end-model-doc -->
* @return the value of the '<em>Code</em>' containment reference.
* @see #setCode(Code)
* @see org.hl7.fhir.FhirPackage#getConceptMapElement_Code()
* @model containment="true"
* extendedMetaData="kind='element' name='code' namespace='##targetNamespace'"
* @generated
*/
Code getCode();
/**
* Sets the value of the '{@link org.hl7.fhir.ConceptMapElement#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(Code 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#getConceptMapElement_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.ConceptMapElement#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);
/**
* Returns the value of the '<em><b>Target</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.ConceptMapTarget}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A concept from the target value set that this concept maps to.
* <!-- end-model-doc -->
* @return the value of the '<em>Target</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getConceptMapElement_Target()
* @model containment="true"
* extendedMetaData="kind='element' name='target' namespace='##targetNamespace'"
* @generated
*/
EList<ConceptMapTarget> getTarget();
} // ConceptMapElement