org.projecthusky.common.hl7cdar2.IVLPPDPQ 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 java.util.ArrayList;
import java.util.List;
/**
*
* Java-Klasse für IVL_PPD_PQ complex type.
*
*
* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="IVL_PPD_PQ">
* <complexContent>
* <extension base="{urn:hl7-org:v3}SXCM_PPD_PQ">
* <choice minOccurs="0">
* <sequence>
* <element name="low" type="{urn:hl7-org:v3}IVXB_PPD_PQ"/>
* <choice minOccurs="0">
* <element name="width" type="{urn:hl7-org:v3}PPD_PQ" minOccurs="0"/>
* <element name="high" type="{urn:hl7-org:v3}IVXB_PPD_PQ" minOccurs="0"/>
* </choice>
* </sequence>
* <element name="high" type="{urn:hl7-org:v3}IVXB_PPD_PQ"/>
* <sequence>
* <element name="width" type="{urn:hl7-org:v3}PPD_PQ"/>
* <element name="high" type="{urn:hl7-org:v3}IVXB_PPD_PQ" minOccurs="0"/>
* </sequence>
* <sequence>
* <element name="center" type="{urn:hl7-org:v3}PPD_PQ"/>
* <element name="width" type="{urn:hl7-org:v3}PPD_PQ" minOccurs="0"/>
* </sequence>
* </choice>
* </extension>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IVL_PPD_PQ", propOrder = {"rest"})
public class IVLPPDPQ extends SXCMPPDPQ {
@XmlElementRefs({
@XmlElementRef(name = "center", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false),
@XmlElementRef(name = "width", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false),
@XmlElementRef(name = "high", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false),
@XmlElementRef(name = "low", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false)})
protected List> rest;
/**
* Ruft das restliche Contentmodell ab.
*
*
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: Der Feldname "High" wird von zwei verschiedenen
* Teilen eines Schemas verwendet. Siehe: Zeile 612 von file:/C:/src/git/ehc-trunk/common/ehealth_connector-common-gen/src/main/resources/schemas/hl7cdar2/coreschemas/datatypes.xsd
* Zeile 603 von file:/C:/src/git/ehc-trunk/common/ehealth_connector-common-gen/src/main/resources/schemas/hl7cdar2/coreschemas/datatypes.xsd
*
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine der beiden folgenden
* Deklarationen an, um deren Namen zu ändern: Gets the value of the rest 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 rest property.
*
*
* For example, to add a new item, do as follows:
* getRest().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list {@link JAXBElement }{@code <}{@link PPDPQ }{@code >}
* {@link JAXBElement }{@code <}{@link PPDPQ }{@code >} {@link JAXBElement }{@code <}{@link IVXBPPDPQ }{@code >}
* {@link JAXBElement }{@code <}{@link IVXBPPDPQ }{@code >}
*/
@NonNull
public List> getRest() {
if (rest == null) {
rest = new ArrayList<>();
}
return this.rest;
}
}