blob: 00ba990a7cb6dfdf84983d21293d40178d578a75 [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.resource;
import org.eclipse.mdht.uml.fhir.core.datatype.Base64Binary;
import org.eclipse.mdht.uml.fhir.core.datatype.Code;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>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.resource.Binary#getContentType <em>Content Type</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.Binary#getContent <em>Content</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getBinary()
* @model
* @generated
*/
public interface Binary extends Resource {
/**
* Returns the value of the '<em><b>Content Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Content Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Content Type</em>' reference.
* @see #setContentType(Code)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getBinary_ContentType()
* @model required="true"
* @generated
*/
Code getContentType();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.Binary#getContentType <em>Content Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Content Type</em>' reference.
* @see #getContentType()
* @generated
*/
void setContentType(Code value);
/**
* Returns the value of the '<em><b>Content</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Content</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Content</em>' reference.
* @see #setContent(Base64Binary)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getBinary_Content()
* @model required="true"
* @generated
*/
Base64Binary getContent();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.Binary#getContent <em>Content</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Content</em>' reference.
* @see #getContent()
* @generated
*/
void setContent(Base64Binary value);
} // Binary