blob: 39dc5d3194750a06d0a23c8e7b90a0c43114ef60 [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.datatype;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Codeable Concept</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
*
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.CodeableConcept#getCodings <em>Coding</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.CodeableConcept#getText <em>Text</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getCodeableConcept()
* @model
* @generated
*/
public interface CodeableConcept extends DataType {
/**
* Returns the value of the '<em><b>Coding</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.Coding}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Coding</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>Coding</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getCodeableConcept_Coding()
* @model
* @generated
*/
EList<Coding> getCodings();
/**
* Returns the value of the '<em><b>Text</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Text</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Text</em>' reference.
* @see #setText(org.eclipse.mdht.uml.fhir.core.datatype.String)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getCodeableConcept_Text()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getText();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.CodeableConcept#getText <em>Text</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Text</em>' reference.
* @see #getText()
* @generated
*/
void setText(org.eclipse.mdht.uml.fhir.core.datatype.String value);
} // CodeableConcept