blob: 20bc7b45bb000579dc598d8eaa0c09cb81d6c3ee [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.datatype;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Element</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.datatype.Element#getId <em>Id</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.Element#getExtensions <em>Extension</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElement()
* @model abstract="true"
* @generated
*/
public interface Element extends Base {
/**
* Returns the value of the '<em><b>Id</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Id</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Id</em>' reference.
* @see #setId(Id)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getElement_Id()
* @model
* @generated
*/
Id getId();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.Element#getId <em>Id</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Id</em>' reference.
* @see #getId()
* @generated
*/
void setId(Id value);
/**
* 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.datatype.FhirDatatypePackage#getElement_Extension()
* @model
* @generated
*/
EList<Extension> getExtensions();
} // Element