blob: c362f72f63a14587fc8c02d4f2bf6944eaeb161b [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Order When</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A request to perform an action.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.OrderWhen#getCode <em>Code</em>}</li>
* <li>{@link org.hl7.fhir.OrderWhen#getSchedule <em>Schedule</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getOrderWhen()
* @model extendedMetaData="name='Order.When' kind='elementOnly'"
* @generated
*/
public interface OrderWhen extends BackboneElement {
/**
* Returns the value of the '<em><b>Code</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Code specifies when request should be done. The code may simply be a priority code.
* <!-- end-model-doc -->
* @return the value of the '<em>Code</em>' containment reference.
* @see #setCode(CodeableConcept)
* @see org.hl7.fhir.FhirPackage#getOrderWhen_Code()
* @model containment="true"
* extendedMetaData="kind='element' name='code' namespace='##targetNamespace'"
* @generated
*/
CodeableConcept getCode();
/**
* Sets the value of the '{@link org.hl7.fhir.OrderWhen#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>Schedule</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A formal schedule.
* <!-- end-model-doc -->
* @return the value of the '<em>Schedule</em>' containment reference.
* @see #setSchedule(Timing)
* @see org.hl7.fhir.FhirPackage#getOrderWhen_Schedule()
* @model containment="true"
* extendedMetaData="kind='element' name='schedule' namespace='##targetNamespace'"
* @generated
*/
Timing getSchedule();
/**
* Sets the value of the '{@link org.hl7.fhir.OrderWhen#getSchedule <em>Schedule</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Schedule</em>' containment reference.
* @see #getSchedule()
* @generated
*/
void setSchedule(Timing value);
} // OrderWhen