riv.ehr.patientsummary._1.BL 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for BL complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BL">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}ANY">
* <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BL")
@XmlSeeAlso({
BLNONNULL.class
})
public class BL
extends ANY
{
@XmlAttribute(name = "value")
protected Boolean value;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setValue(Boolean value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy