blob: b0e2d04f8f3d9c7d20cbffff2d0fa40923bc95d1 [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.Uri;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Value Set Compose</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ValueSetCompose#getImports <em>Import</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ValueSetCompose#getIncludes <em>Include</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ValueSetCompose#getExcludes <em>Exclude</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getValueSetCompose()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='ValueSet_Compose'"
* @generated
*/
public interface ValueSetCompose extends BackboneElement {
/**
* Returns the value of the '<em><b>Import</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.Uri}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Import</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>Import</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getValueSetCompose_Import()
* @model
* @generated
*/
EList<Uri> getImports();
/**
* Returns the value of the '<em><b>Include</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.ValueSetComposeConceptSet}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Include</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Include</em>' containment reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getValueSetCompose_Include()
* @model containment="true"
* @generated
*/
EList<ValueSetComposeConceptSet> getIncludes();
/**
* Returns the value of the '<em><b>Exclude</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.ValueSetComposeConceptSet}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Exclude</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Exclude</em>' containment reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getValueSetCompose_Exclude()
* @model containment="true"
* @generated
*/
EList<ValueSetComposeConceptSet> getExcludes();
} // ValueSetCompose