riv.ehr.patientsummary._1.ELEMENT 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;
/**
*
* The Data Value holder in the aggregation structure.
*
*
* Java class for ELEMENT complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ELEMENT">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}ITEM">
* <sequence>
* <element name="value" type="{urn:riv:ehr:patientsummary:1}ANY" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ELEMENT", propOrder = {
"value"
})
public class ELEMENT
extends ITEM
{
protected ANY value;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link ANY }
*
*/
public ANY getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link ANY }
*
*/
public void setValue(ANY value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy