blob: 5eb0fb61e4199ff6239b72502440c1a34895a023 [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.Identifier;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Decision Support Service Module</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.resource.DecisionSupportServiceModule#getIdentifiers <em>Identifier</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DecisionSupportServiceModule#getVersion <em>Version</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DecisionSupportServiceModule#getModuleMetadata <em>Module Metadata</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DecisionSupportServiceModule#getParameters <em>Parameter</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDecisionSupportServiceModule()
* @model
* @generated
*/
public interface DecisionSupportServiceModule extends DomainResource {
/**
* Returns the value of the '<em><b>Identifier</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.Identifier}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Identifier</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>Identifier</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDecisionSupportServiceModule_Identifier()
* @model
* @generated
*/
EList<Identifier> getIdentifiers();
/**
* Returns the value of the '<em><b>Version</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Version</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Version</em>' reference.
* @see #setVersion(org.eclipse.mdht.uml.fhir.core.datatype.String)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDecisionSupportServiceModule_Version()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getVersion();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.DecisionSupportServiceModule#getVersion <em>Version</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Version</em>' reference.
* @see #getVersion()
* @generated
*/
void setVersion(org.eclipse.mdht.uml.fhir.core.datatype.String value);
/**
* Returns the value of the '<em><b>Module Metadata</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Module Metadata</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Module Metadata</em>' reference.
* @see #setModuleMetadata(ModuleMetadata)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDecisionSupportServiceModule_ModuleMetadata()
* @model
* @generated
*/
ModuleMetadata getModuleMetadata();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.DecisionSupportServiceModule#getModuleMetadata <em>Module Metadata</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Module Metadata</em>' reference.
* @see #getModuleMetadata()
* @generated
*/
void setModuleMetadata(ModuleMetadata value);
/**
* Returns the value of the '<em><b>Parameter</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.resource.DecisionSupportServiceModuleParameter}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Parameter</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>Parameter</em>' containment reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDecisionSupportServiceModule_Parameter()
* @model containment="true"
* @generated
*/
EList<DecisionSupportServiceModuleParameter> getParameters();
} // DecisionSupportServiceModule