riv.ehr.patientsummary._1.URGTSDATETIMEFULL 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.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for URG_TS.DATETIME.FULL complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="URG_TS.DATETIME.FULL">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}QTY">
* <sequence>
* <element name="low" type="{urn:riv:ehr:patientsummary:1}TS.DATETIME.FULL" minOccurs="0"/>
* <element name="high" type="{urn:riv:ehr:patientsummary:1}TS.DATETIME.FULL" minOccurs="0"/>
* </sequence>
* <attribute name="lowClosed" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="highClosed" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "URG_TS.DATETIME.FULL", propOrder = {
"low",
"high"
})
@XmlSeeAlso({
URGLOWTSDATETIMEFULL.class,
URGHIGHTSDATETIMEFULL.class
})
public class URGTSDATETIMEFULL
extends QTY
{
protected TSDATETIMEFULL low;
protected TSDATETIMEFULL high;
@XmlAttribute(name = "lowClosed")
protected Boolean lowClosed;
@XmlAttribute(name = "highClosed")
protected Boolean highClosed;
/**
* Gets the value of the low property.
*
* @return
* possible object is
* {@link TSDATETIMEFULL }
*
*/
public TSDATETIMEFULL getLow() {
return low;
}
/**
* Sets the value of the low property.
*
* @param value
* allowed object is
* {@link TSDATETIMEFULL }
*
*/
public void setLow(TSDATETIMEFULL value) {
this.low = value;
}
/**
* Gets the value of the high property.
*
* @return
* possible object is
* {@link TSDATETIMEFULL }
*
*/
public TSDATETIMEFULL getHigh() {
return high;
}
/**
* Sets the value of the high property.
*
* @param value
* allowed object is
* {@link TSDATETIMEFULL }
*
*/
public void setHigh(TSDATETIMEFULL value) {
this.high = value;
}
/**
* Gets the value of the lowClosed property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isLowClosed() {
return lowClosed;
}
/**
* Sets the value of the lowClosed property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setLowClosed(Boolean value) {
this.lowClosed = value;
}
/**
* Gets the value of the highClosed property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isHighClosed() {
return highClosed;
}
/**
* Sets the value of the highClosed property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setHighClosed(Boolean value) {
this.highClosed = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy