riv.ehr.patientsummary._1.ITEM Maven / Gradle / Ivy
package riv.ehr.patientsummary._1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
*
* Superclass of Cluster and Element that enables the former
* to include instances of itself. The obs_time should be a
* restriction on the data types of low and high to make them
* TS, but this restriction is not permissible in XML Schema
* and thus the IVL properties are simply copied here with the
* appropriate types.
*
*
* Java class for ITEM complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ITEM">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}RECORD_COMPONENT">
* <sequence>
* <element name="emphasis" type="{urn:riv:ehr:patientsummary:1}CD" minOccurs="0"/>
* <element name="item_category" type="{urn:riv:ehr:patientsummary:1}CS" minOccurs="0"/>
* <element name="obs_time" type="{urn:riv:ehr:patientsummary:1}IVL_TS" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ITEM", propOrder = {
"emphasis",
"itemCategory",
"obsTime"
})
@XmlSeeAlso({
ELEMENT.class,
CLUSTER.class
})
public abstract class ITEM
extends RECORDCOMPONENT
{
protected CD emphasis;
@XmlElement(name = "item_category")
protected CS itemCategory;
@XmlElement(name = "obs_time")
protected IVLTS obsTime;
/**
* Gets the value of the emphasis property.
*
* @return
* possible object is
* {@link CD }
*
*/
public CD getEmphasis() {
return emphasis;
}
/**
* Sets the value of the emphasis property.
*
* @param value
* allowed object is
* {@link CD }
*
*/
public void setEmphasis(CD value) {
this.emphasis = value;
}
/**
* Gets the value of the itemCategory property.
*
* @return
* possible object is
* {@link CS }
*
*/
public CS getItemCategory() {
return itemCategory;
}
/**
* Sets the value of the itemCategory property.
*
* @param value
* allowed object is
* {@link CS }
*
*/
public void setItemCategory(CS value) {
this.itemCategory = value;
}
/**
* Gets the value of the obsTime property.
*
* @return
* possible object is
* {@link IVLTS }
*
*/
public IVLTS getObsTime() {
return obsTime;
}
/**
* Sets the value of the obsTime property.
*
* @param value
* allowed object is
* {@link IVLTS }
*
*/
public void setObsTime(IVLTS value) {
this.obsTime = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy