blob: 65193286e6a922abeea9265ba7c99464ddd361c9 [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.CodeableConcept;
import org.eclipse.mdht.uml.fhir.core.datatype.DateTime;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Detected Issue Mitigation</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DetectedIssueMitigation#getAction <em>Action</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DetectedIssueMitigation#getDate <em>Date</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DetectedIssueMitigation#getAuthor <em>Author</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDetectedIssueMitigation()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='DetectedIssue_Mitigation'"
* @generated
*/
public interface DetectedIssueMitigation extends BackboneElement {
/**
* Returns the value of the '<em><b>Action</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Action</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Action</em>' reference.
* @see #setAction(CodeableConcept)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDetectedIssueMitigation_Action()
* @model required="true"
* @generated
*/
CodeableConcept getAction();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.DetectedIssueMitigation#getAction <em>Action</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Action</em>' reference.
* @see #getAction()
* @generated
*/
void setAction(CodeableConcept value);
/**
* 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#getDetectedIssueMitigation_Date()
* @model
* @generated
*/
DateTime getDate();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.DetectedIssueMitigation#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>Author</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Author</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Author</em>' reference.
* @see #setAuthor(Practitioner)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDetectedIssueMitigation_Author()
* @model
* @generated
*/
Practitioner getAuthor();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.DetectedIssueMitigation#getAuthor <em>Author</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Author</em>' reference.
* @see #getAuthor()
* @generated
*/
void setAuthor(Practitioner value);
} // DetectedIssueMitigation