blob: e6533e695ff06fe35e5a3a4b86dd3b06091f10a2 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Extension</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.Extension#getUrl <em>Url</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.Extension#getValuex <em>Valuex</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getExtension()
* @model
* @generated
*/
public interface Extension extends DataType {
/**
* Returns the value of the '<em><b>Url</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Url</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Url</em>' reference.
* @see #setUrl(Uri)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getExtension_Url()
* @model required="true"
* @generated
*/
Uri getUrl();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.Extension#getUrl <em>Url</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Url</em>' reference.
* @see #getUrl()
* @generated
*/
void setUrl(Uri value);
/**
* Returns the value of the '<em><b>Valuex</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Valuex</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Valuex</em>' reference.
* @see #setValuex(DataType)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getExtension_Valuex()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='value[x]'"
* @generated
*/
DataType getValuex();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.Extension#getValuex <em>Valuex</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Valuex</em>' reference.
* @see #getValuex()
* @generated
*/
void setValuex(DataType value);
} // Extension