blob: 376dd9215de7ffe00c3985438eddf6b32756b0b2 [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.emf.common.util.EList;
import org.eclipse.mdht.uml.fhir.core.datatype.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.CodeableConcept;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Specimen Treatment</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.SpecimenTreatment#getDescription <em>Description</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.SpecimenTreatment#getProcedure <em>Procedure</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.SpecimenTreatment#getAdditives <em>Additive</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getSpecimenTreatment()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Specimen_Treatment'"
* @generated
*/
public interface SpecimenTreatment extends BackboneElement {
/**
* Returns the value of the '<em><b>Description</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Description</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Description</em>' reference.
* @see #setDescription(org.eclipse.mdht.uml.fhir.core.datatype.String)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getSpecimenTreatment_Description()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getDescription();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.SpecimenTreatment#getDescription <em>Description</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description</em>' reference.
* @see #getDescription()
* @generated
*/
void setDescription(org.eclipse.mdht.uml.fhir.core.datatype.String value);
/**
* Returns the value of the '<em><b>Procedure</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Procedure</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Procedure</em>' reference.
* @see #setProcedure(CodeableConcept)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getSpecimenTreatment_Procedure()
* @model
* @generated
*/
CodeableConcept getProcedure();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.SpecimenTreatment#getProcedure <em>Procedure</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Procedure</em>' reference.
* @see #getProcedure()
* @generated
*/
void setProcedure(CodeableConcept value);
/**
* Returns the value of the '<em><b>Additive</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.Substance}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Additive</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Additive</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getSpecimenTreatment_Additive()
* @model
* @generated
*/
EList<Substance> getAdditives();
} // SpecimenTreatment