riv.ehr.patientsummary._1.StrucDocTRow Maven / Gradle / Ivy
package riv.ehr.patientsummary._1;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for StrucDoc.TRow complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StrucDoc.TRow">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}StrucDoc.TableItem">
* <sequence>
* <choice maxOccurs="unbounded" minOccurs="0">
* <element name="th" type="{urn:riv:ehr:patientsummary:1}StrucDoc.TCell"/>
* <element name="td" type="{urn:riv:ehr:patientsummary:1}StrucDoc.TCell"/>
* </choice>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StrucDoc.TRow", propOrder = {
"thOrTd"
})
public class StrucDocTRow
extends StrucDocTableItem
{
@XmlElementRefs({
@XmlElementRef(name = "td", namespace = "urn:riv:ehr:patientsummary:1", type = JAXBElement.class, required = false),
@XmlElementRef(name = "th", namespace = "urn:riv:ehr:patientsummary:1", type = JAXBElement.class, required = false)
})
protected List> thOrTd;
/**
* Gets the value of the thOrTd 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 thOrTd property.
*
*
* For example, to add a new item, do as follows:
*
* getThOrTd().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link StrucDocTCell }{@code >}
* {@link JAXBElement }{@code <}{@link StrucDocTCell }{@code >}
*
*
*/
public List> getThOrTd() {
if (thOrTd == null) {
thOrTd = new ArrayList>();
}
return this.thOrTd;
}
}