blob: abc4f01d7c637c679554c50454900e2fa882799c [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.DateTime;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Immunization Reaction</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ImmunizationReaction#getDate <em>Date</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ImmunizationReaction#getDetail <em>Detail</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ImmunizationReaction#getReported <em>Reported</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getImmunizationReaction()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Immunization_Reaction'"
* @generated
*/
public interface ImmunizationReaction extends BackboneElement {
/**
* Returns the value of the '<em><b>Date</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Date</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Date</em>' reference.
* @see #setDate(DateTime)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getImmunizationReaction_Date()
* @model
* @generated
*/
DateTime getDate();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ImmunizationReaction#getDate <em>Date</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Date</em>' reference.
* @see #getDate()
* @generated
*/
void setDate(DateTime value);
/**
* Returns the value of the '<em><b>Detail</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Detail</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Detail</em>' reference.
* @see #setDetail(Observation)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getImmunizationReaction_Detail()
* @model
* @generated
*/
Observation getDetail();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ImmunizationReaction#getDetail <em>Detail</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Detail</em>' reference.
* @see #getDetail()
* @generated
*/
void setDetail(Observation value);
/**
* Returns the value of the '<em><b>Reported</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Reported</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Reported</em>' reference.
* @see #setReported(org.eclipse.mdht.uml.fhir.core.datatype.Boolean)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getImmunizationReaction_Reported()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.Boolean getReported();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ImmunizationReaction#getReported <em>Reported</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Reported</em>' reference.
* @see #getReported()
* @generated
*/
void setReported(org.eclipse.mdht.uml.fhir.core.datatype.Boolean value);
} // ImmunizationReaction