blob: 2dc5ae0ff92ad9add0f2385862b2e22f6cc98ad1 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Measure Component</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.MeasureComponent#getCode <em>Code</em>}</li>
* <li>{@link org.hl7.fhir.MeasureComponent#getDescription <em>Description</em>}</li>
* <li>{@link org.hl7.fhir.MeasureComponent#getCriteria <em>Criteria</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getMeasureComponent()
* @model extendedMetaData="name='Measure.Component' kind='elementOnly'"
* @generated
*/
public interface MeasureComponent 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 stratifier component. This can be as simple as a unique identifier, or it can establish meaning in a broader context by drawing from a terminology, allowing stratifiers 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#getMeasureComponent_Code()
* @model containment="true"
* extendedMetaData="kind='element' name='code' namespace='##targetNamespace'"
* @generated
*/
CodeableConcept getCode();
/**
* Sets the value of the '{@link org.hl7.fhir.MeasureComponent#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 stratifier criteria component.
* <!-- end-model-doc -->
* @return the value of the '<em>Description</em>' containment reference.
* @see #setDescription(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getMeasureComponent_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.MeasureComponent#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 this component of the stratifier. This is typically the name of an expression defined within a referenced library, but it may also be a path to a stratifier element.
* <!-- end-model-doc -->
* @return the value of the '<em>Criteria</em>' containment reference.
* @see #setCriteria(Expression)
* @see org.hl7.fhir.FhirPackage#getMeasureComponent_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.MeasureComponent#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);
} // MeasureComponent