blob: a27ffca11d7ab8fc90fbcffd7ebe813e2ee76bf2 [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.CodeableConcept;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Patient Animal</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.PatientAnimal#getSpecies <em>Species</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.PatientAnimal#getBreed <em>Breed</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.PatientAnimal#getGenderStatus <em>Gender Status</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getPatientAnimal()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Patient_Animal'"
* @generated
*/
public interface PatientAnimal extends BackboneElement {
/**
* Returns the value of the '<em><b>Species</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Species</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Species</em>' reference.
* @see #setSpecies(CodeableConcept)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getPatientAnimal_Species()
* @model required="true"
* @generated
*/
CodeableConcept getSpecies();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.PatientAnimal#getSpecies <em>Species</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Species</em>' reference.
* @see #getSpecies()
* @generated
*/
void setSpecies(CodeableConcept value);
/**
* Returns the value of the '<em><b>Breed</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Breed</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Breed</em>' reference.
* @see #setBreed(CodeableConcept)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getPatientAnimal_Breed()
* @model
* @generated
*/
CodeableConcept getBreed();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.PatientAnimal#getBreed <em>Breed</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Breed</em>' reference.
* @see #getBreed()
* @generated
*/
void setBreed(CodeableConcept value);
/**
* Returns the value of the '<em><b>Gender Status</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Gender Status</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Gender Status</em>' reference.
* @see #setGenderStatus(CodeableConcept)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getPatientAnimal_GenderStatus()
* @model
* @generated
*/
CodeableConcept getGenderStatus();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.PatientAnimal#getGenderStatus <em>Gender Status</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Gender Status</em>' reference.
* @see #getGenderStatus()
* @generated
*/
void setGenderStatus(CodeableConcept value);
} // PatientAnimal