riv.ehr.patientsummary._1.StrucDocCMTitle Maven / Gradle / Ivy
package riv.ehr.patientsummary._1;
import java.io.Serializable;
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.XmlMixed;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for StrucDoc.CMTitle complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StrucDoc.CMTitle">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="footnote" type="{urn:riv:ehr:patientsummary:1}StrucDoc.TitleFootnote" minOccurs="0"/>
* <element name="footnoteRef" type="{urn:riv:ehr:patientsummary:1}StrucDoc.FootnoteRef" minOccurs="0"/>
* <element name="br" type="{urn:riv:ehr:patientsummary:1}StrucDoc.Br" minOccurs="0"/>
* <element name="linkHtml" type="{urn:riv:ehr:patientsummary:1}StrucDoc.LinkHtml" minOccurs="0"/>
* <element name="sub" type="{urn:riv:ehr:patientsummary:1}StrucDoc.Sub" minOccurs="0"/>
* <element name="sup" type="{urn:riv:ehr:patientsummary:1}StrucDoc.Sup" minOccurs="0"/>
* <element name="content" type="{urn:riv:ehr:patientsummary:1}StrucDoc.CMTitle" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StrucDoc.CMTitle", propOrder = {
"content"
})
public class StrucDocCMTitle {
@XmlElementRefs({
@XmlElementRef(name = "br", namespace = "urn:riv:ehr:patientsummary:1", type = JAXBElement.class, required = false),
@XmlElementRef(name = "sup", namespace = "urn:riv:ehr:patientsummary:1", type = JAXBElement.class, required = false),
@XmlElementRef(name = "footnoteRef", namespace = "urn:riv:ehr:patientsummary:1", type = JAXBElement.class, required = false),
@XmlElementRef(name = "linkHtml", namespace = "urn:riv:ehr:patientsummary:1", type = JAXBElement.class, required = false),
@XmlElementRef(name = "content", namespace = "urn:riv:ehr:patientsummary:1", type = JAXBElement.class, required = false),
@XmlElementRef(name = "footnote", namespace = "urn:riv:ehr:patientsummary:1", type = JAXBElement.class, required = false),
@XmlElementRef(name = "sub", namespace = "urn:riv:ehr:patientsummary:1", type = JAXBElement.class, required = false)
})
@XmlMixed
protected List content;
/**
* Gets the value of the content 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 content property.
*
*
* For example, to add a new item, do as follows:
*
* getContent().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link StrucDocBr }{@code >}
* {@link JAXBElement }{@code <}{@link StrucDocSup }{@code >}
* {@link JAXBElement }{@code <}{@link StrucDocFootnoteRef }{@code >}
* {@link JAXBElement }{@code <}{@link StrucDocLinkHtml }{@code >}
* {@link JAXBElement }{@code <}{@link StrucDocCMTitle }{@code >}
* {@link JAXBElement }{@code <}{@link StrucDocTitleFootnote }{@code >}
* {@link String }
* {@link JAXBElement }{@code <}{@link StrucDocSub }{@code >}
*
*
*/
public List getContent() {
if (content == null) {
content = new ArrayList();
}
return this.content;
}
}