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

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

There is a newer version: 1.0.1
Show newest version

package riv.ehr.patientsummary._1;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for SLIST_REAL complex type. * *

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

 * <complexType name="SLIST_REAL">
 *   <complexContent>
 *     <extension base="{urn:riv:ehr:patientsummary:1}ANY">
 *       <sequence>
 *         <element name="origin" type="{urn:riv:ehr:patientsummary:1}REAL" minOccurs="0"/>
 *         <element name="scale" type="{urn:riv:ehr:patientsummary:1}QTY" minOccurs="0"/>
 *         <element name="digit" type="{urn:riv:ehr:patientsummary:1}INT" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SLIST_REAL", propOrder = { "origin", "scale", "digit" }) public class SLISTREAL extends ANY { protected REAL origin; protected QTY scale; protected List digit; /** * Gets the value of the origin property. * * @return * possible object is * {@link REAL } * */ public REAL getOrigin() { return origin; } /** * Sets the value of the origin property. * * @param value * allowed object is * {@link REAL } * */ public void setOrigin(REAL value) { this.origin = value; } /** * Gets the value of the scale property. * * @return * possible object is * {@link QTY } * */ public QTY getScale() { return scale; } /** * Sets the value of the scale property. * * @param value * allowed object is * {@link QTY } * */ public void setScale(QTY value) { this.scale = value; } /** * Gets the value of the digit property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the digit property. * *

* For example, to add a new item, do as follows: *

     *    getDigit().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link INT } * * */ public List getDigit() { if (digit == null) { digit = new ArrayList(); } return this.digit; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy