blob: 4588337ec353663a55dbd6220b22ccdb4247402d [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;
import org.eclipse.mdht.uml.fhir.core.datatype.Date;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Claim Missing Teeth</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimMissingTeeth#getTooth <em>Tooth</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimMissingTeeth#getReason <em>Reason</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimMissingTeeth#getExtractionDate <em>Extraction Date</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimMissingTeeth()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Claim_MissingTeeth'"
* @generated
*/
public interface ClaimMissingTeeth extends BackboneElement {
/**
* Returns the value of the '<em><b>Tooth</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Tooth</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Tooth</em>' reference.
* @see #setTooth(Coding)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimMissingTeeth_Tooth()
* @model required="true"
* @generated
*/
Coding getTooth();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimMissingTeeth#getTooth <em>Tooth</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Tooth</em>' reference.
* @see #getTooth()
* @generated
*/
void setTooth(Coding value);
/**
* Returns the value of the '<em><b>Reason</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Reason</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Reason</em>' reference.
* @see #setReason(Coding)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimMissingTeeth_Reason()
* @model
* @generated
*/
Coding getReason();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimMissingTeeth#getReason <em>Reason</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Reason</em>' reference.
* @see #getReason()
* @generated
*/
void setReason(Coding value);
/**
* Returns the value of the '<em><b>Extraction Date</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Extraction Date</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Extraction Date</em>' reference.
* @see #setExtractionDate(Date)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getClaimMissingTeeth_ExtractionDate()
* @model
* @generated
*/
Date getExtractionDate();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ClaimMissingTeeth#getExtractionDate <em>Extraction Date</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Extraction Date</em>' reference.
* @see #getExtractionDate()
* @generated
*/
void setExtractionDate(Date value);
} // ClaimMissingTeeth