blob: 63bd755adbe70eae753b44550456c9450679da05 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Element Definition Mapping</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionMapping#getIdentity <em>Identity</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionMapping#getLanguage <em>Language</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionMapping#getMap <em>Map</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElementDefinitionMapping()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='ElementDefinition_Mapping'"
* @generated
*/
public interface ElementDefinitionMapping extends BackboneElement {
/**
* Returns the value of the '<em><b>Identity</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Identity</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Identity</em>' reference.
* @see #setIdentity(Id)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElementDefinitionMapping_Identity()
* @model required="true"
* @generated
*/
Id getIdentity();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionMapping#getIdentity <em>Identity</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Identity</em>' reference.
* @see #getIdentity()
* @generated
*/
void setIdentity(Id value);
/**
* Returns the value of the '<em><b>Language</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Language</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Language</em>' reference.
* @see #setLanguage(Code)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElementDefinitionMapping_Language()
* @model
* @generated
*/
Code getLanguage();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionMapping#getLanguage <em>Language</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Language</em>' reference.
* @see #getLanguage()
* @generated
*/
void setLanguage(Code value);
/**
* Returns the value of the '<em><b>Map</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Map</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Map</em>' reference.
* @see #setMap(org.eclipse.mdht.uml.fhir.core.datatype.String)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElementDefinitionMapping_Map()
* @model required="true"
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getMap();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.ElementDefinitionMapping#getMap <em>Map</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Map</em>' reference.
* @see #getMap()
* @generated
*/
void setMap(org.eclipse.mdht.uml.fhir.core.datatype.String value);
} // ElementDefinitionMapping