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

riv.ehr.patientsummary._1.URGCO 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 URG_CO complex type. * *

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

 * <complexType name="URG_CO">
 *   <complexContent>
 *     <extension base="{urn:riv:ehr:patientsummary:1}QTY">
 *       <sequence>
 *         <element name="low" type="{urn:riv:ehr:patientsummary:1}CO" minOccurs="0"/>
 *         <element name="high" type="{urn:riv:ehr:patientsummary:1}CO" 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_CO", propOrder = { "low", "high" }) @XmlSeeAlso({ URGHIGHCO.class, URGLOWCO.class }) public class URGCO extends QTY { protected CO low; protected CO 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 CO } * */ public CO getLow() { return low; } /** * Sets the value of the low property. * * @param value * allowed object is * {@link CO } * */ public void setLow(CO value) { this.low = value; } /** * Gets the value of the high property. * * @return * possible object is * {@link CO } * */ public CO getHigh() { return high; } /** * Sets the value of the high property. * * @param value * allowed object is * {@link CO } * */ public void setHigh(CO 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