blob: b1d1ce088c11fee8b1b4dd0cfa7ce294d887d98b [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.emf.common.util.EList;
import org.eclipse.mdht.uml.fhir.core.datatype.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.Code;
import org.eclipse.mdht.uml.fhir.core.datatype.CodeableConcept;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Appointment Participant</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.AppointmentParticipant#getTypes <em>Type</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.AppointmentParticipant#getActor <em>Actor</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.AppointmentParticipant#getRequired <em>Required</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.AppointmentParticipant#getStatus <em>Status</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getAppointmentParticipant()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Appointment_Participant'"
* @generated
*/
public interface AppointmentParticipant extends BackboneElement {
/**
* Returns the value of the '<em><b>Type</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.CodeableConcept}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' reference list 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 list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getAppointmentParticipant_Type()
* @model
* @generated
*/
EList<CodeableConcept> getTypes();
/**
* Returns the value of the '<em><b>Actor</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Actor</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Actor</em>' reference.
* @see #setActor(Resource)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getAppointmentParticipant_Actor()
* @model
* @generated
*/
Resource getActor();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.AppointmentParticipant#getActor <em>Actor</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Actor</em>' reference.
* @see #getActor()
* @generated
*/
void setActor(Resource value);
/**
* Returns the value of the '<em><b>Required</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Required</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Required</em>' reference.
* @see #setRequired(Code)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getAppointmentParticipant_Required()
* @model
* @generated
*/
Code getRequired();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.AppointmentParticipant#getRequired <em>Required</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Required</em>' reference.
* @see #getRequired()
* @generated
*/
void setRequired(Code value);
/**
* Returns the value of the '<em><b>Status</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Status</em>' reference.
* @see #setStatus(Code)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getAppointmentParticipant_Status()
* @model required="true"
* @generated
*/
Code getStatus();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.AppointmentParticipant#getStatus <em>Status</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Status</em>' reference.
* @see #getStatus()
* @generated
*/
void setStatus(Code value);
} // AppointmentParticipant