riv.ehr.patientsummary._1.CLUSTER Maven / Gradle / Ivy
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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
*
* Represents hierarchical organisation of data values.
*
*
* Java class for CLUSTER complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CLUSTER">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}ITEM">
* <sequence>
* <element name="structure_type" type="{urn:riv:ehr:patientsummary:1}CS"/>
* <element name="parts" type="{urn:riv:ehr:patientsummary:1}ITEM" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CLUSTER", propOrder = {
"structureType",
"parts"
})
public class CLUSTER
extends ITEM
{
@XmlElement(name = "structure_type", required = true)
protected CS structureType;
protected List- parts;
/**
* Gets the value of the structureType property.
*
* @return
* possible object is
* {@link CS }
*
*/
public CS getStructureType() {
return structureType;
}
/**
* Sets the value of the structureType property.
*
* @param value
* allowed object is
* {@link CS }
*
*/
public void setStructureType(CS value) {
this.structureType = value;
}
/**
* Gets the value of the parts 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 parts property.
*
*
* For example, to add a new item, do as follows:
*
* getParts().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ITEM }
*
*
*/
public List- getParts() {
if (parts == null) {
parts = new ArrayList
- ();
}
return this.parts;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy