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