blob: 54a8c6bfbf36b422b9850d95eecffee5d7d9b778 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 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>Element Definition Type Ref</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionTypeRef#getCode <em>Code</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionTypeRef#getProfiles <em>Profile</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionTypeRef#getAggregations <em>Aggregation</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElementDefinitionTypeRef()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='ElementDefinition_TypeRef'"
* @generated
*/
public interface ElementDefinitionTypeRef extends BackboneElement {
/**
* Returns the value of the '<em><b>Code</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Code</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Code</em>' reference.
* @see #setCode(Code)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElementDefinitionTypeRef_Code()
* @model required="true"
* @generated
*/
Code getCode();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionTypeRef#getCode <em>Code</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Code</em>' reference.
* @see #getCode()
* @generated
*/
void setCode(Code value);
/**
* Returns the value of the '<em><b>Profile</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>Profile</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>Profile</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElementDefinitionTypeRef_Profile()
* @model
* @generated
*/
EList<Uri> getProfiles();
/**
* Returns the value of the '<em><b>Aggregation</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.Code}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Aggregation</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>Aggregation</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElementDefinitionTypeRef_Aggregation()
* @model
* @generated
*/
EList<Code> getAggregations();
} // ElementDefinitionTypeRef