blob: 061af16b4a1dc2f65fb709c6e0fb331e4070ac18 [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>Base64 Binary</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.Base64Binary#getValue <em>Value</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getBase64Binary()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='base64Binary'"
* @generated
*/
public interface Base64Binary extends DataType {
/**
* Returns the value of the '<em><b>Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Value</em>' attribute.
* @see #setValue(byte[])
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getBase64Binary_Value()
* @model dataType="org.eclipse.emf.ecore.xml.type.Base64Binary"
* extendedMetaData="kind='attribute'"
* @generated
*/
byte[] getValue();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.Base64Binary#getValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' attribute.
* @see #getValue()
* @generated
*/
void setValue(byte[] value);
} // Base64Binary