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

org.projecthusky.common.hl7cdar2.StrucDocLinkHtml 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.LinkHtml complex type. * *

* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="StrucDoc.LinkHtml">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice maxOccurs="unbounded" minOccurs="0">
 *         <element name="footnote" type="{urn:hl7-org:v3}StrucDoc.Footnote"/>
 *         <element name="footnoteRef" type="{urn:hl7-org:v3}StrucDoc.FootnoteRef"/>
 *       </choice>
 *       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="href" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="rel" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="rev" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="title" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <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" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StrucDoc.LinkHtml", propOrder = {"content"}) public class StrucDocLinkHtml { @XmlElementRefs({ @XmlElementRef(name = "footnoteRef", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false), @XmlElementRef(name = "footnote", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false)}) @XmlMixed protected List content; @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "href") protected String href; @XmlAttribute(name = "rel") protected String rel; @XmlAttribute(name = "rev") protected String rev; @XmlAttribute(name = "title") protected String title; @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; /** * 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 StrucDocFootnote * }{@code >} {@link JAXBElement }{@code <}{@link StrucDocFootnoteRef }{@code >} {@link String } */ @NonNull public List getContent() { if (content == null) { content = new ArrayList<>(); } return this.content; } /** * Ruft den Wert der href-Eigenschaft ab. * * @return possible object is {@link String } */ public String getHref() { return href; } /** * Ruft den Wert der id-Eigenschaft ab. * * @return possible object is {@link String } */ public String getID() { return id; } /** * Ruft den Wert der language-Eigenschaft ab. * * @return possible object is {@link String } */ public String getLanguage() { return language; } /** * Ruft den Wert der name-Eigenschaft ab. * * @return possible object is {@link String } */ public String getName() { return name; } /** * Ruft den Wert der rel-Eigenschaft ab. * * @return possible object is {@link String } */ public String getRel() { return rel; } /** * Ruft den Wert der rev-Eigenschaft ab. * * @return possible object is {@link String } */ public String getRev() { return rev; } /** * Gets the value of the styleCode 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 styleCode property. * *

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

     *    getStyleCode().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list {@link String } */ @NonNull public List getStyleCode() { if (styleCode == null) { styleCode = new ArrayList<>(); } return this.styleCode; } /** * Ruft den Wert der title-Eigenschaft ab. * * @return possible object is {@link String } */ public String getTitle() { return title; } /** * Legt den Wert der href-Eigenschaft fest. * * @param value allowed object is {@link String } */ public void setHref(String value) { this.href = value; } /** * Legt den Wert der id-Eigenschaft fest. * * @param value allowed object is {@link String } */ public void setID(String value) { this.id = value; } /** * Legt den Wert der language-Eigenschaft fest. * * @param value allowed object is {@link String } */ public void setLanguage(String value) { this.language = value; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value allowed object is {@link String } */ public void setName(String value) { this.name = value; } /** * Legt den Wert der rel-Eigenschaft fest. * * @param value allowed object is {@link String } */ public void setRel(String value) { this.rel = value; } /** * Legt den Wert der rev-Eigenschaft fest. * * @param value allowed object is {@link String } */ public void setRev(String value) { this.rev = value; } /** * Legt den Wert der title-Eigenschaft fest. * * @param value allowed object is {@link String } */ public void setTitle(String value) { this.title = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy