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