All Downloads are FREE. Search and download functionalities are using the official Maven repository.

riv.ehr.patientsummary._1.IVLTS Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version

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_TS complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="IVL_TS">
 *   <complexContent>
 *     <extension base="{urn:riv:ehr:patientsummary:1}QSET_TS">
 *       <sequence>
 *         <element name="low" type="{urn:riv:ehr:patientsummary:1}TS" minOccurs="0"/>
 *         <element name="high" type="{urn:riv:ehr:patientsummary:1}TS" minOccurs="0"/>
 *         <element name="width" type="{urn:riv:ehr:patientsummary:1}QTY" minOccurs="0"/>
 *         <element name="any" type="{urn:riv:ehr:patientsummary:1}TS" 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_TS", propOrder = { "low", "high", "width", "any" }) @XmlSeeAlso({ IVLWIDTHTS.class, IVLLOWTS.class, IVLHIGHTS.class }) public class IVLTS extends QSETTS { protected TS low; protected TS high; protected QTY width; protected TS 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 TS } * */ public TS getLow() { return low; } /** * Sets the value of the low property. * * @param value * allowed object is * {@link TS } * */ public void setLow(TS value) { this.low = value; } /** * Gets the value of the high property. * * @return * possible object is * {@link TS } * */ public TS getHigh() { return high; } /** * Sets the value of the high property. * * @param value * allowed object is * {@link TS } * */ public void setHigh(TS 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 TS } * */ public TS getAny() { return any; } /** * Sets the value of the any property. * * @param value * allowed object is * {@link TS } * */ public void setAny(TS 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