blob: c831d26161ba14c2a878c1ffc704c2df8629b891 [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>Measure Group</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* The Measure resource provides the definition of a quality measure.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.MeasureGroup#getCode <em>Code</em>}</li>
* <li>{@link org.hl7.fhir.MeasureGroup#getDescription <em>Description</em>}</li>
* <li>{@link org.hl7.fhir.MeasureGroup#getPopulation <em>Population</em>}</li>
* <li>{@link org.hl7.fhir.MeasureGroup#getStratifier <em>Stratifier</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getMeasureGroup()
* @model extendedMetaData="name='Measure.Group' kind='elementOnly'"
* @generated
*/
public interface MeasureGroup extends BackboneElement {
/**
* Returns the value of the '<em><b>Code</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Indicates a meaning for the group. This can be as simple as a unique identifier, or it can establish meaning in a broader context by drawing from a terminology, allowing groups to be correlated across measures.
* <!-- end-model-doc -->
* @return the value of the '<em>Code</em>' containment reference.
* @see #setCode(CodeableConcept)
* @see org.hl7.fhir.FhirPackage#getMeasureGroup_Code()
* @model containment="true"
* extendedMetaData="kind='element' name='code' namespace='##targetNamespace'"
* @generated
*/
CodeableConcept getCode();
/**
* Sets the value of the '{@link org.hl7.fhir.MeasureGroup#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(CodeableConcept value);
/**
* Returns the value of the '<em><b>Description</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The human readable description of this population group.
* <!-- end-model-doc -->
* @return the value of the '<em>Description</em>' containment reference.
* @see #setDescription(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getMeasureGroup_Description()
* @model containment="true"
* extendedMetaData="kind='element' name='description' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getDescription();
/**
* Sets the value of the '{@link org.hl7.fhir.MeasureGroup#getDescription <em>Description</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description</em>' containment reference.
* @see #getDescription()
* @generated
*/
void setDescription(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Population</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.MeasurePopulation}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A population criteria for the measure.
* <!-- end-model-doc -->
* @return the value of the '<em>Population</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getMeasureGroup_Population()
* @model containment="true"
* extendedMetaData="kind='element' name='population' namespace='##targetNamespace'"
* @generated
*/
EList<MeasurePopulation> getPopulation();
/**
* Returns the value of the '<em><b>Stratifier</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.MeasureStratifier}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The stratifier criteria for the measure report, specified as either the name of a valid CQL expression defined within a referenced library or a valid FHIR Resource Path.
* <!-- end-model-doc -->
* @return the value of the '<em>Stratifier</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getMeasureGroup_Stratifier()
* @model containment="true"
* extendedMetaData="kind='element' name='stratifier' namespace='##targetNamespace'"
* @generated
*/
EList<MeasureStratifier> getStratifier();
} // MeasureGroup