org.projecthusky.common.hl7cdar2.StrucDocTd Maven / Gradle / Ivy
/*
* This code is made available under the terms of the Eclipse Public License v1.0
* in the github project https://github.com/project-husky/husky there you also
* find a list of the contributors and the license information.
*
* This project has been developed further and modified by the joined working group Husky
* on the basis of the eHealth Connector opensource project from June 28, 2021,
* whereas medshare GmbH is the initial and main contributor/author of the eHealth Connector.
*
*/
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert
// Siehe http://java.sun.com/xml/jaxb
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2020.07.09 um 01:07:39 PM CEST
//
package org.projecthusky.common.hl7cdar2;
import org.checkerframework.checker.nullness.qual.NonNull;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
/**
*
* Java-Klasse für StrucDoc.Td complex type.
*
*
* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="StrucDoc.Td">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice maxOccurs="unbounded" minOccurs="0">
* <element name="content" type="{urn:hl7-org:v3}StrucDoc.Content"/>
* <element name="linkHtml" type="{urn:hl7-org:v3}StrucDoc.LinkHtml"/>
* <element name="sub" type="{urn:hl7-org:v3}StrucDoc.Sub"/>
* <element name="sup" type="{urn:hl7-org:v3}StrucDoc.Sup"/>
* <element name="br" type="{urn:hl7-org:v3}StrucDoc.Br"/>
* <element name="footnote" type="{urn:hl7-org:v3}StrucDoc.Footnote"/>
* <element name="footnoteRef" type="{urn:hl7-org:v3}StrucDoc.FootnoteRef"/>
* <element name="renderMultiMedia" type="{urn:hl7-org:v3}StrucDoc.RenderMultiMedia"/>
* <element name="paragraph" type="{urn:hl7-org:v3}StrucDoc.Paragraph"/>
* <element name="list" type="{urn:hl7-org:v3}StrucDoc.List"/>
* </choice>
* <attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}ID" />
* <attribute name="language" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* <attribute name="styleCode" type="{http://www.w3.org/2001/XMLSchema}NMTOKENS" />
* <attribute name="abbr" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="axis" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="headers" type="{http://www.w3.org/2001/XMLSchema}IDREFS" />
* <attribute name="scope">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
* <enumeration value="row"/>
* <enumeration value="col"/>
* <enumeration value="rowgroup"/>
* <enumeration value="colgroup"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="rowspan" type="{http://www.w3.org/2001/XMLSchema}string" default="1" />
* <attribute name="colspan" type="{http://www.w3.org/2001/XMLSchema}string" default="1" />
* <attribute name="align">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
* <enumeration value="left"/>
* <enumeration value="center"/>
* <enumeration value="right"/>
* <enumeration value="justify"/>
* <enumeration value="char"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="char" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="charoff" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="valign">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
* <enumeration value="top"/>
* <enumeration value="middle"/>
* <enumeration value="bottom"/>
* <enumeration value="baseline"/>
* </restriction>
* </simpleType>
* </attribute>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StrucDoc.Td", propOrder = {"content"})
public class StrucDocTd {
@XmlElementRefs({
@XmlElementRef(name = "linkHtml", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false),
@XmlElementRef(name = "sup", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false),
@XmlElementRef(name = "paragraph", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false),
@XmlElementRef(name = "list", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false),
@XmlElementRef(name = "br", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false),
@XmlElementRef(name = "footnote", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false),
@XmlElementRef(name = "sub", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false),
@XmlElementRef(name = "renderMultiMedia", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false),
@XmlElementRef(name = "content", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false),
@XmlElementRef(name = "footnoteRef", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false)})
@XmlMixed
protected List content;
@XmlAttribute(name = "ID")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
@XmlAttribute(name = "language")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected String language;
@XmlAttribute(name = "styleCode")
@XmlSchemaType(name = "NMTOKENS")
protected List styleCode;
@XmlAttribute(name = "abbr")
protected String abbr;
@XmlAttribute(name = "axis")
protected String axis;
@XmlAttribute(name = "headers")
@XmlIDREF
@XmlSchemaType(name = "IDREFS")
protected List