blob: 6023a5646134d30d18f545e6faed54e363d75cd9 [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>Condition Stage</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ConditionStage#getSummary <em>Summary</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ConditionStage#getAssessments <em>Assessment</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getConditionStage()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Condition_Stage'"
* @generated
*/
public interface ConditionStage extends BackboneElement {
/**
* Returns the value of the '<em><b>Summary</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Summary</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Summary</em>' reference.
* @see #setSummary(CodeableConcept)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getConditionStage_Summary()
* @model
* @generated
*/
CodeableConcept getSummary();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ConditionStage#getSummary <em>Summary</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Summary</em>' reference.
* @see #getSummary()
* @generated
*/
void setSummary(CodeableConcept value);
/**
* Returns the value of the '<em><b>Assessment</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>Assessment</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>Assessment</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getConditionStage_Assessment()
* @model
* @generated
*/
EList<Resource> getAssessments();
} // ConditionStage