blob: a20af93babe03fb526a4ca25c87981849d56e4d9 [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>Value Set Include</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A value set specifies a set of codes drawn from one or more code systems.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.ValueSetInclude#getSystem <em>System</em>}</li>
* <li>{@link org.hl7.fhir.ValueSetInclude#getVersion <em>Version</em>}</li>
* <li>{@link org.hl7.fhir.ValueSetInclude#getConcept <em>Concept</em>}</li>
* <li>{@link org.hl7.fhir.ValueSetInclude#getFilter <em>Filter</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getValueSetInclude()
* @model extendedMetaData="name='ValueSet.Include' kind='elementOnly'"
* @generated
*/
public interface ValueSetInclude extends BackboneElement {
/**
* Returns the value of the '<em><b>System</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* An absolute URI which is the code system from which the selected codes come from.
* <!-- end-model-doc -->
* @return the value of the '<em>System</em>' containment reference.
* @see #setSystem(Uri)
* @see org.hl7.fhir.FhirPackage#getValueSetInclude_System()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='system' namespace='##targetNamespace'"
* @generated
*/
Uri getSystem();
/**
* Sets the value of the '{@link org.hl7.fhir.ValueSetInclude#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(Uri value);
/**
* Returns the value of the '<em><b>Version</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The version of the code system that the codes are selected from.
* <!-- end-model-doc -->
* @return the value of the '<em>Version</em>' containment reference.
* @see #setVersion(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getValueSetInclude_Version()
* @model containment="true"
* extendedMetaData="kind='element' name='version' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getVersion();
/**
* Sets the value of the '{@link org.hl7.fhir.ValueSetInclude#getVersion <em>Version</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Version</em>' containment reference.
* @see #getVersion()
* @generated
*/
void setVersion(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Concept</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.ValueSetConcept1}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Specifies a concept to be included or excluded.
* <!-- end-model-doc -->
* @return the value of the '<em>Concept</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getValueSetInclude_Concept()
* @model containment="true"
* extendedMetaData="kind='element' name='concept' namespace='##targetNamespace'"
* @generated
*/
EList<ValueSetConcept1> getConcept();
/**
* Returns the value of the '<em><b>Filter</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.ValueSetFilter}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Select concepts by specify a matching criteria based on the properties (including relationships) defined by the system. If multiple filters are specified, they SHALL all be true.
* <!-- end-model-doc -->
* @return the value of the '<em>Filter</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getValueSetInclude_Filter()
* @model containment="true"
* extendedMetaData="kind='element' name='filter' namespace='##targetNamespace'"
* @generated
*/
EList<ValueSetFilter> getFilter();
} // ValueSetInclude