riv.ehr.patientsummary._1.SLISTTSDATETIME Maven / Gradle / Ivy
package riv.ehr.patientsummary._1;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for SLIST_TS.DATETIME complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SLIST_TS.DATETIME">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}ANY">
* <sequence>
* <element name="origin" type="{urn:riv:ehr:patientsummary:1}TS.DATETIME" minOccurs="0"/>
* <element name="scale" type="{urn:riv:ehr:patientsummary:1}QTY" minOccurs="0"/>
* <element name="digit" type="{urn:riv:ehr:patientsummary:1}INT" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SLIST_TS.DATETIME", propOrder = {
"origin",
"scale",
"digit"
})
public class SLISTTSDATETIME
extends ANY
{
protected TSDATETIME origin;
protected QTY scale;
protected List digit;
/**
* Gets the value of the origin property.
*
* @return
* possible object is
* {@link TSDATETIME }
*
*/
public TSDATETIME getOrigin() {
return origin;
}
/**
* Sets the value of the origin property.
*
* @param value
* allowed object is
* {@link TSDATETIME }
*
*/
public void setOrigin(TSDATETIME value) {
this.origin = value;
}
/**
* Gets the value of the scale property.
*
* @return
* possible object is
* {@link QTY }
*
*/
public QTY getScale() {
return scale;
}
/**
* Sets the value of the scale property.
*
* @param value
* allowed object is
* {@link QTY }
*
*/
public void setScale(QTY value) {
this.scale = value;
}
/**
* Gets the value of the digit property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the digit property.
*
*
* For example, to add a new item, do as follows:
*
* getDigit().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link INT }
*
*
*/
public List getDigit() {
if (digit == null) {
digit = new ArrayList();
}
return this.digit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy