blob: 266fe8a518e2ef6da7957981732d1f070d72fd5e [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.Extension;
import org.eclipse.mdht.uml.fhir.core.datatype.Narrative;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Domain Resource</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.DomainResource#getText <em>Text</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DomainResource#getContaineds <em>Contained</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DomainResource#getExtensions <em>Extension</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.DomainResource#getModifierExtensions <em>Modifier Extension</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDomainResource()
* @model abstract="true"
* @generated
*/
public interface DomainResource extends Resource {
/**
* 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(Narrative)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDomainResource_Text()
* @model
* @generated
*/
Narrative getText();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.DomainResource#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(Narrative value);
/**
* Returns the value of the '<em><b>Contained</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>Contained</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>Contained</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDomainResource_Contained()
* @model
* @generated
*/
EList<Resource> getContaineds();
/**
* Returns the value of the '<em><b>Extension</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.Extension}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Extension</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>Extension</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDomainResource_Extension()
* @model
* @generated
*/
EList<Extension> getExtensions();
/**
* Returns the value of the '<em><b>Modifier Extension</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.Extension}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Modifier Extension</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>Modifier Extension</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getDomainResource_ModifierExtension()
* @model
* @generated
*/
EList<Extension> getModifierExtensions();
} // DomainResource