riv.ehr.patientsummary._1.QSPREAL 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 QSP_REAL complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="QSP_REAL">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}QSET_REAL">
* <sequence>
* <element name="first" type="{urn:riv:ehr:patientsummary:1}QSET_REAL" minOccurs="0"/>
* <element name="second" type="{urn:riv:ehr:patientsummary:1}QSET_REAL" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "QSP_REAL", propOrder = {
"first",
"second"
})
public class QSPREAL
extends QSETREAL
{
protected QSETREAL first;
protected QSETREAL second;
/**
* Gets the value of the first property.
*
* @return
* possible object is
* {@link QSETREAL }
*
*/
public QSETREAL getFirst() {
return first;
}
/**
* Sets the value of the first property.
*
* @param value
* allowed object is
* {@link QSETREAL }
*
*/
public void setFirst(QSETREAL value) {
this.first = value;
}
/**
* Gets the value of the second property.
*
* @return
* possible object is
* {@link QSETREAL }
*
*/
public QSETREAL getSecond() {
return second;
}
/**
* Sets the value of the second property.
*
* @param value
* allowed object is
* {@link QSETREAL }
*
*/
public void setSecond(QSETREAL value) {
this.second = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy