blob: 1fa882970c31cf54384fd7204bc8b58b0cbe0d59 [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.Code;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Module Definition Data</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ModuleDefinitionData#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ModuleDefinitionData#getProfile <em>Profile</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ModuleDefinitionData#getMustSupports <em>Must Support</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ModuleDefinitionData#getCodeFilters <em>Code Filter</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ModuleDefinitionData#getDateFilters <em>Date Filter</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getModuleDefinitionData()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='ModuleDefinition_Data'"
* @generated
*/
public interface ModuleDefinitionData extends BackboneElement {
/**
* Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' reference.
* @see #setType(Code)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getModuleDefinitionData_Type()
* @model required="true"
* @generated
*/
Code getType();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ModuleDefinitionData#getType <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' reference.
* @see #getType()
* @generated
*/
void setType(Code value);
/**
* Returns the value of the '<em><b>Profile</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Profile</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Profile</em>' reference.
* @see #setProfile(StructureDefinition)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getModuleDefinitionData_Profile()
* @model
* @generated
*/
StructureDefinition getProfile();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ModuleDefinitionData#getProfile <em>Profile</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Profile</em>' reference.
* @see #getProfile()
* @generated
*/
void setProfile(StructureDefinition value);
/**
* Returns the value of the '<em><b>Must Support</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Must Support</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>Must Support</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getModuleDefinitionData_MustSupport()
* @model
* @generated
*/
EList<org.eclipse.mdht.uml.fhir.core.datatype.String> getMustSupports();
/**
* Returns the value of the '<em><b>Code Filter</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.ModuleDefinitionDataCodeFilter}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Code Filter</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>Code Filter</em>' containment reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getModuleDefinitionData_CodeFilter()
* @model containment="true"
* @generated
*/
EList<ModuleDefinitionDataCodeFilter> getCodeFilters();
/**
* Returns the value of the '<em><b>Date Filter</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.ModuleDefinitionDataDateFilter}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Date Filter</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>Date Filter</em>' containment reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getModuleDefinitionData_DateFilter()
* @model containment="true"
* @generated
*/
EList<ModuleDefinitionDataDateFilter> getDateFilters();
} // ModuleDefinitionData