riv.ehr.patientsummary._1.IVLPQTIME 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 IVL_PQ.TIME complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="IVL_PQ.TIME">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}QSET_PQ.TIME">
* <sequence>
* <element name="low" type="{urn:riv:ehr:patientsummary:1}PQ.TIME" minOccurs="0"/>
* <element name="high" type="{urn:riv:ehr:patientsummary:1}PQ.TIME" minOccurs="0"/>
* <element name="width" type="{urn:riv:ehr:patientsummary:1}QTY" minOccurs="0"/>
* <element name="any" type="{urn:riv:ehr:patientsummary:1}PQ.TIME" 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 = "IVL_PQ.TIME", propOrder = {
"low",
"high",
"width",
"any"
})
@XmlSeeAlso({
IVLHIGHPQTIME.class,
IVLLOWPQTIME.class,
IVLWIDTHPQTIME.class
})
public class IVLPQTIME
extends QSETPQTIME
{
protected PQTIME low;
protected PQTIME high;
protected QTY width;
protected PQTIME any;
@XmlAttribute(name = "lowClosed")
protected Boolean lowClosed;
@XmlAttribute(name = "highClosed")
protected Boolean highClosed;
/**
* Gets the value of the low property.
*
* @return
* possible object is
* {@link PQTIME }
*
*/
public PQTIME getLow() {
return low;
}
/**
* Sets the value of the low property.
*
* @param value
* allowed object is
* {@link PQTIME }
*
*/
public void setLow(PQTIME value) {
this.low = value;
}
/**
* Gets the value of the high property.
*
* @return
* possible object is
* {@link PQTIME }
*
*/
public PQTIME getHigh() {
return high;
}
/**
* Sets the value of the high property.
*
* @param value
* allowed object is
* {@link PQTIME }
*
*/
public void setHigh(PQTIME value) {
this.high = value;
}
/**
* Gets the value of the width property.
*
* @return
* possible object is
* {@link QTY }
*
*/
public QTY getWidth() {
return width;
}
/**
* Sets the value of the width property.
*
* @param value
* allowed object is
* {@link QTY }
*
*/
public void setWidth(QTY value) {
this.width = value;
}
/**
* Gets the value of the any property.
*
* @return
* possible object is
* {@link PQTIME }
*
*/
public PQTIME getAny() {
return any;
}
/**
* Sets the value of the any property.
*
* @param value
* allowed object is
* {@link PQTIME }
*
*/
public void setAny(PQTIME value) {
this.any = 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