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