All Downloads are FREE. Search and download functionalities are using the official Maven repository.

riv.ehr.patientsummary._1.MO Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version

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.XmlType;


/**
 * 

Java class for MO complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="MO">
 *   <complexContent>
 *     <extension base="{urn:riv:ehr:patientsummary:1}QTY">
 *       <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}double" />
 *       <attribute name="precision" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="currency" type="{urn:riv:ehr:patientsummary:1}Code" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MO") public class MO extends QTY { @XmlAttribute(name = "value") protected Double value; @XmlAttribute(name = "precision") protected Integer precision; @XmlAttribute(name = "currency") protected String currency; /** * Gets the value of the value property. * * @return * possible object is * {@link Double } * */ public Double getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link Double } * */ public void setValue(Double value) { this.value = value; } /** * Gets the value of the precision property. * * @return * possible object is * {@link Integer } * */ public Integer getPrecision() { return precision; } /** * Sets the value of the precision property. * * @param value * allowed object is * {@link Integer } * */ public void setPrecision(Integer value) { this.precision = value; } /** * Gets the value of the currency property. * * @return * possible object is * {@link String } * */ public String getCurrency() { return currency; } /** * Sets the value of the currency property. * * @param value * allowed object is * {@link String } * */ public void setCurrency(String value) { this.currency = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy