blob: 8d792dafb738e1ca0e15018ed5d4dcb74cf76e02 [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#getType <em>Type</em>}</li>
* <li>{@link org.hl7.fhir.MeasurePopulation#getName <em>Name</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>Type</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>Type</em>' containment reference.
* @see #setType(MeasurePopulationType)
* @see org.hl7.fhir.FhirPackage#getMeasurePopulation_Type()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='type' namespace='##targetNamespace'"
* @generated
*/
MeasurePopulationType getType();
/**
* Sets the value of the '{@link org.hl7.fhir.MeasurePopulation#getType <em>Type</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' containment reference.
* @see #getType()
* @generated
*/
void setType(MeasurePopulationType value);
/**
* Returns the value of the '<em><b>Name</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Optional name or short description of this population.
* <!-- end-model-doc -->
* @return the value of the '<em>Name</em>' containment reference.
* @see #setName(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getMeasurePopulation_Name()
* @model containment="true"
* extendedMetaData="kind='element' name='name' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getName();
/**
* Sets the value of the '{@link org.hl7.fhir.MeasurePopulation#getName <em>Name</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' containment reference.
* @see #getName()
* @generated
*/
void setName(org.hl7.fhir.String 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 -->
* The name of a valid referenced CQL expression (may be namespaced) that defines this population criteria.
* <!-- end-model-doc -->
* @return the value of the '<em>Criteria</em>' containment reference.
* @see #setCriteria(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getMeasurePopulation_Criteria()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='criteria' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String 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(org.hl7.fhir.String value);
} // MeasurePopulation