blob: f42ab341e4c8f3aff7437b03e7e463763ba76cae [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 David Carlson and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* David Carlson (Clinical Cloud Solutions, LLC) - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.mdht.uml.fhir.core.resource;
import org.eclipse.mdht.uml.fhir.core.datatype.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.Code;
import org.eclipse.mdht.uml.fhir.core.datatype.Instant;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Device Metric Calibration</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DeviceMetricCalibration#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DeviceMetricCalibration#getState <em>State</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DeviceMetricCalibration#getTime <em>Time</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDeviceMetricCalibration()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='DeviceMetric_Calibration'"
* @generated
*/
public interface DeviceMetricCalibration extends BackboneElement {
/**
* Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' reference.
* @see #setType(Code)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDeviceMetricCalibration_Type()
* @model
* @generated
*/
Code getType();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.DeviceMetricCalibration#getType <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' reference.
* @see #getType()
* @generated
*/
void setType(Code value);
/**
* Returns the value of the '<em><b>State</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>State</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>State</em>' reference.
* @see #setState(Code)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDeviceMetricCalibration_State()
* @model
* @generated
*/
Code getState();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.DeviceMetricCalibration#getState <em>State</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>State</em>' reference.
* @see #getState()
* @generated
*/
void setState(Code value);
/**
* Returns the value of the '<em><b>Time</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Time</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Time</em>' reference.
* @see #setTime(Instant)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDeviceMetricCalibration_Time()
* @model
* @generated
*/
Instant getTime();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.DeviceMetricCalibration#getTime <em>Time</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Time</em>' reference.
* @see #getTime()
* @generated
*/
void setTime(Instant value);
} // DeviceMetricCalibration