blob: fabcde3e4083d9454e3f4f58460ef7528714eea6 [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.Address;
import org.eclipse.mdht.uml.fhir.core.datatype.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.CodeableConcept;
import org.eclipse.mdht.uml.fhir.core.datatype.ContactPoint;
import org.eclipse.mdht.uml.fhir.core.datatype.HumanName;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Organization Contact</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.OrganizationContact#getPurpose <em>Purpose</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.OrganizationContact#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.OrganizationContact#getTelecoms <em>Telecom</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.OrganizationContact#getAddress <em>Address</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getOrganizationContact()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Organization_Contact'"
* @generated
*/
public interface OrganizationContact extends BackboneElement {
/**
* Returns the value of the '<em><b>Purpose</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Purpose</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Purpose</em>' reference.
* @see #setPurpose(CodeableConcept)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getOrganizationContact_Purpose()
* @model
* @generated
*/
CodeableConcept getPurpose();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.OrganizationContact#getPurpose <em>Purpose</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Purpose</em>' reference.
* @see #getPurpose()
* @generated
*/
void setPurpose(CodeableConcept value);
/**
* Returns the value of the '<em><b>Name</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' reference.
* @see #setName(HumanName)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getOrganizationContact_Name()
* @model
* @generated
*/
HumanName getName();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.OrganizationContact#getName <em>Name</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' reference.
* @see #getName()
* @generated
*/
void setName(HumanName value);
/**
* Returns the value of the '<em><b>Telecom</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.ContactPoint}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Telecom</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>Telecom</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getOrganizationContact_Telecom()
* @model
* @generated
*/
EList<ContactPoint> getTelecoms();
/**
* Returns the value of the '<em><b>Address</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Address</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Address</em>' reference.
* @see #setAddress(Address)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getOrganizationContact_Address()
* @model
* @generated
*/
Address getAddress();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.OrganizationContact#getAddress <em>Address</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Address</em>' reference.
* @see #getAddress()
* @generated
*/
void setAddress(Address value);
} // OrganizationContact