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