riv.ehr.patientsummary._1.INT 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 INT complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="INT">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}QTY">
* <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}int" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "INT")
@XmlSeeAlso({
INTNONNEG.class
})
public class INT
extends QTY
{
@XmlAttribute(name = "value")
protected Integer value;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setValue(Integer value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy