blob: 4b06b98a98a7400b8fa6f62a12e0176a5e0d10d7 [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.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.Coding;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Claim Payee</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimPayee#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimPayee#getProvider <em>Provider</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimPayee#getOrganization <em>Organization</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimPayee#getPerson <em>Person</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimPayee()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Claim_Payee'"
* @generated
*/
public interface ClaimPayee extends BackboneElement {
/**
* Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Type</em>' reference.
* @see #setType(Coding)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimPayee_Type()
* @model
* @generated
*/
Coding getType();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimPayee#getType <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' reference.
* @see #getType()
* @generated
*/
void setType(Coding value);
/**
* Returns the value of the '<em><b>Provider</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Provider</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Provider</em>' reference.
* @see #setProvider(Practitioner)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimPayee_Provider()
* @model
* @generated
*/
Practitioner getProvider();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimPayee#getProvider <em>Provider</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Provider</em>' reference.
* @see #getProvider()
* @generated
*/
void setProvider(Practitioner value);
/**
* Returns the value of the '<em><b>Organization</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Organization</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Organization</em>' reference.
* @see #setOrganization(Organization)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimPayee_Organization()
* @model
* @generated
*/
Organization getOrganization();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimPayee#getOrganization <em>Organization</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Organization</em>' reference.
* @see #getOrganization()
* @generated
*/
void setOrganization(Organization value);
/**
* Returns the value of the '<em><b>Person</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Person</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Person</em>' reference.
* @see #setPerson(Patient)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimPayee_Person()
* @model
* @generated
*/
Patient getPerson();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimPayee#getPerson <em>Person</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Person</em>' reference.
* @see #getPerson()
* @generated
*/
void setPerson(Patient value);
} // ClaimPayee