blob: 7f80c47fe5d64f53c43f88222c742e5239887ac9 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Device Version</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A type of a manufactured item that is used in the provision of healthcare without being substantially changed through that activity. The device may be a medical or non-medical device.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.DeviceVersion#getType <em>Type</em>}</li>
* <li>{@link org.hl7.fhir.DeviceVersion#getComponent <em>Component</em>}</li>
* <li>{@link org.hl7.fhir.DeviceVersion#getValue <em>Value</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getDeviceVersion()
* @model extendedMetaData="name='Device.Version' kind='elementOnly'"
* @generated
*/
public interface DeviceVersion 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 the device version.
* <!-- end-model-doc -->
* @return the value of the '<em>Type</em>' containment reference.
* @see #setType(CodeableConcept)
* @see org.hl7.fhir.FhirPackage#getDeviceVersion_Type()
* @model containment="true"
* extendedMetaData="kind='element' name='type' namespace='##targetNamespace'"
* @generated
*/
CodeableConcept getType();
/**
* Sets the value of the '{@link org.hl7.fhir.DeviceVersion#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(CodeableConcept value);
/**
* Returns the value of the '<em><b>Component</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A single component of the device version.
* <!-- end-model-doc -->
* @return the value of the '<em>Component</em>' containment reference.
* @see #setComponent(Identifier)
* @see org.hl7.fhir.FhirPackage#getDeviceVersion_Component()
* @model containment="true"
* extendedMetaData="kind='element' name='component' namespace='##targetNamespace'"
* @generated
*/
Identifier getComponent();
/**
* Sets the value of the '{@link org.hl7.fhir.DeviceVersion#getComponent <em>Component</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Component</em>' containment reference.
* @see #getComponent()
* @generated
*/
void setComponent(Identifier value);
/**
* Returns the value of the '<em><b>Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The version text.
* <!-- end-model-doc -->
* @return the value of the '<em>Value</em>' containment reference.
* @see #setValue(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getDeviceVersion_Value()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='value' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getValue();
/**
* Sets the value of the '{@link org.hl7.fhir.DeviceVersion#getValue <em>Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' containment reference.
* @see #getValue()
* @generated
*/
void setValue(org.hl7.fhir.String value);
} // DeviceVersion