blob: 7224e23085b1e15096db867fed98e959c3f7afa7 [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.datatype;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Contact Point</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
*
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ContactPoint#getSystem <em>System</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ContactPoint#getValue <em>Value</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ContactPoint#getUse <em>Use</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ContactPoint#getRank <em>Rank</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.ContactPoint#getPeriod <em>Period</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getContactPoint()
* @model
* @generated
*/
public interface ContactPoint extends DataType {
/**
* Returns the value of the '<em><b>System</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>System</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>System</em>' reference.
* @see #setSystem(Code)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getContactPoint_System()
* @model
* @generated
*/
Code getSystem();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.ContactPoint#getSystem <em>System</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>System</em>' reference.
* @see #getSystem()
* @generated
*/
void setSystem(Code value);
/**
* Returns the value of the '<em><b>Value</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Value</em>' reference.
* @see #setValue(org.eclipse.mdht.uml.fhir.core.datatype.String)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getContactPoint_Value()
* @model
* @generated
*/
org.eclipse.mdht.uml.fhir.core.datatype.String getValue();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.ContactPoint#getValue <em>Value</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' reference.
* @see #getValue()
* @generated
*/
void setValue(org.eclipse.mdht.uml.fhir.core.datatype.String value);
/**
* Returns the value of the '<em><b>Use</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Use</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Use</em>' reference.
* @see #setUse(Code)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getContactPoint_Use()
* @model
* @generated
*/
Code getUse();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.ContactPoint#getUse <em>Use</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Use</em>' reference.
* @see #getUse()
* @generated
*/
void setUse(Code value);
/**
* Returns the value of the '<em><b>Rank</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Rank</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Rank</em>' reference.
* @see #setRank(PositiveInt)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getContactPoint_Rank()
* @model
* @generated
*/
PositiveInt getRank();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.ContactPoint#getRank <em>Rank</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Rank</em>' reference.
* @see #getRank()
* @generated
*/
void setRank(PositiveInt value);
/**
* Returns the value of the '<em><b>Period</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Period</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Period</em>' reference.
* @see #setPeriod(Period)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getContactPoint_Period()
* @model
* @generated
*/
Period getPeriod();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.ContactPoint#getPeriod <em>Period</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Period</em>' reference.
* @see #getPeriod()
* @generated
*/
void setPeriod(Period value);
} // ContactPoint