blob: 32d106e33dd776c8434ee747fe49ffcaac9ca56d [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.Annotation;
import org.eclipse.mdht.uml.fhir.core.datatype.BackboneElement;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Care Plan Activity</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.CarePlanActivity#getActionResultings <em>Action Resulting</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.CarePlanActivity#getProgresses <em>Progress</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.CarePlanActivity#getReference <em>Reference</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.CarePlanActivity#getDetail <em>Detail</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getCarePlanActivity()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='CarePlan_Activity'"
* @generated
*/
public interface CarePlanActivity extends BackboneElement {
/**
* Returns the value of the '<em><b>Action Resulting</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.Resource}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Action Resulting</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>Action Resulting</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getCarePlanActivity_ActionResulting()
* @model
* @generated
*/
EList<Resource> getActionResultings();
/**
* Returns the value of the '<em><b>Progress</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.Annotation}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Progress</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>Progress</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getCarePlanActivity_Progress()
* @model
* @generated
*/
EList<Annotation> getProgresses();
/**
* Returns the value of the '<em><b>Reference</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Reference</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Reference</em>' reference.
* @see #setReference(Resource)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getCarePlanActivity_Reference()
* @model
* @generated
*/
Resource getReference();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.CarePlanActivity#getReference <em>Reference</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Reference</em>' reference.
* @see #getReference()
* @generated
*/
void setReference(Resource value);
/**
* Returns the value of the '<em><b>Detail</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Detail</em>' containment 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>' containment reference.
* @see #setDetail(CarePlanActivityDetail)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getCarePlanActivity_Detail()
* @model containment="true"
* @generated
*/
CarePlanActivityDetail getDetail();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.CarePlanActivity#getDetail <em>Detail</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Detail</em>' containment reference.
* @see #getDetail()
* @generated
*/
void setDetail(CarePlanActivityDetail value);
} // CarePlanActivity