blob: 028ccd4f4d5c4cd966883dae6cae0bf22d6653fa [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Measure Population</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.MeasurePopulation#getCode <em>Code</em>}</li>
* <li>{@link org.hl7.fhir.MeasurePopulation#getDescription <em>Description</em>}</li>
* <li>{@link org.hl7.fhir.MeasurePopulation#getCriteria <em>Criteria</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getMeasurePopulation()
* @model extendedMetaData="name='Measure.Population' kind='elementOnly'"
* @generated
*/
public interface MeasurePopulation extends BackboneElement {
/**
* Returns the value of the '<em><b>Code</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The type of population criteria.
* <!-- end-model-doc -->
* @return the value of the '<em>Code</em>' containment reference.
* @see #setCode(CodeableConcept)
* @see org.hl7.fhir.FhirPackage#getMeasurePopulation_Code()
* @model containment="true"
* extendedMetaData="kind='element' name='code' namespace='##targetNamespace'"
* @generated
*/
CodeableConcept getCode();
/**
* Sets the value of the '{@link org.hl7.fhir.MeasurePopulation#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 criteria.
* <!-- end-model-doc -->
* @return the value of the '<em>Description</em>' containment reference.
* @see #setDescription(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getMeasurePopulation_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.MeasurePopulation#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>Criteria</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* An expression that specifies the criteria for the population, typically the name of an expression in a library.
* <!-- end-model-doc -->
* @return the value of the '<em>Criteria</em>' containment reference.
* @see #setCriteria(Expression)
* @see org.hl7.fhir.FhirPackage#getMeasurePopulation_Criteria()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='criteria' namespace='##targetNamespace'"
* @generated
*/
Expression getCriteria();
/**
* Sets the value of the '{@link org.hl7.fhir.MeasurePopulation#getCriteria <em>Criteria</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Criteria</em>' containment reference.
* @see #getCriteria()
* @generated
*/
void setCriteria(Expression value);
} // MeasurePopulation