riv.ehr.patientsummary._1.GLISTINT 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.XmlType;
/**
* Java class for GLIST_INT complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GLIST_INT">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}ANY">
* <sequence>
* <element name="head" type="{urn:riv:ehr:patientsummary:1}INT" minOccurs="0"/>
* <element name="increment" type="{urn:riv:ehr:patientsummary:1}QTY" minOccurs="0"/>
* </sequence>
* <attribute name="denominator" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="period" type="{http://www.w3.org/2001/XMLSchema}int" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GLIST_INT", propOrder = {
"head",
"increment"
})
public class GLISTINT
extends ANY
{
protected INT head;
protected QTY increment;
@XmlAttribute(name = "denominator")
protected Integer denominator;
@XmlAttribute(name = "period")
protected Integer period;
/**
* Gets the value of the head property.
*
* @return
* possible object is
* {@link INT }
*
*/
public INT getHead() {
return head;
}
/**
* Sets the value of the head property.
*
* @param value
* allowed object is
* {@link INT }
*
*/
public void setHead(INT value) {
this.head = value;
}
/**
* Gets the value of the increment property.
*
* @return
* possible object is
* {@link QTY }
*
*/
public QTY getIncrement() {
return increment;
}
/**
* Sets the value of the increment property.
*
* @param value
* allowed object is
* {@link QTY }
*
*/
public void setIncrement(QTY value) {
this.increment = value;
}
/**
* Gets the value of the denominator property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDenominator() {
return denominator;
}
/**
* Sets the value of the denominator property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDenominator(Integer value) {
this.denominator = value;
}
/**
* Gets the value of the period property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPeriod() {
return period;
}
/**
* Sets the value of the period property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPeriod(Integer value) {
this.period = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy