org.openhealthtools.mdht.uml.cda.SDTCPatient Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2009, 2011 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.openhealthtools.mdht.uml.cda;
import org.eclipse.emf.ecore.EObject;
import org.openhealthtools.mdht.uml.hl7.datatypes.II;
/**
*
* A representation of the model object 'SDTC Patient'.
*
*
*
* The following features are supported:
*
* - {@link org.openhealthtools.mdht.uml.cda.SDTCPatient#getId Id}
*
*
*
* @see org.openhealthtools.mdht.uml.cda.CDAPackage#getSDTCPatient()
* @model
* @generated
*/
public interface SDTCPatient extends EObject {
/**
* Returns the value of the 'Id' containment reference.
*
*
* If the meaning of the 'Id' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Id' containment reference.
* @see #setId(II)
* @see org.openhealthtools.mdht.uml.cda.CDAPackage#getSDTCPatient_Id()
* @model containment="true" required="true" ordered="false"
* extendedMetaData="name='id' namespace='urn:hl7-org:sdtc' kind='element'"
* @generated
*/
II getId();
/**
* Sets the value of the '{@link org.openhealthtools.mdht.uml.cda.SDTCPatient#getId Id}' containment reference.
*
*
* @param value the new value of the 'Id' containment reference.
* @see #getId()
* @generated
*/
void setId(II value);
} // SDTCPatient