riv.ehr.patientsummary._1.RTO 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.XmlType;
/**
* Java class for RTO complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RTO">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}QTY">
* <sequence>
* <element name="numerator" type="{urn:riv:ehr:patientsummary:1}QTY" minOccurs="0"/>
* <element name="denominator" type="{urn:riv:ehr:patientsummary:1}QTY" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RTO", propOrder = {
"numerator",
"denominator"
})
public class RTO
extends QTY
{
protected QTY numerator;
protected QTY denominator;
/**
* Gets the value of the numerator property.
*
* @return
* possible object is
* {@link QTY }
*
*/
public QTY getNumerator() {
return numerator;
}
/**
* Sets the value of the numerator property.
*
* @param value
* allowed object is
* {@link QTY }
*
*/
public void setNumerator(QTY value) {
this.numerator = value;
}
/**
* Gets the value of the denominator property.
*
* @return
* possible object is
* {@link QTY }
*
*/
public QTY getDenominator() {
return denominator;
}
/**
* Sets the value of the denominator property.
*
* @param value
* allowed object is
* {@link QTY }
*
*/
public void setDenominator(QTY value) {
this.denominator = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy