package org.hl7.v3; 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; /** * <p>Java class for IVL_PPD_PQ complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <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> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IVL_PPD_PQ", propOrder = { "rest" }) public class IVLPPDPQ extends SXCMPPDPQ { /** * */ private static final long serialVersionUID = 1L; @XmlElementRefs({ @XmlElementRef(name = "high", namespace = "urn:hl7-org:v3", type = JAXBElement.class), @XmlElementRef(name = "center", namespace = "urn:hl7-org:v3", type = JAXBElement.class), @XmlElementRef(name = "width", namespace = "urn:hl7-org:v3", type = JAXBElement.class), @XmlElementRef(name = "low", namespace = "urn:hl7-org:v3", type = JAXBElement.class) }) protected List<JAXBElement<? extends PPDPQ>> rest; /** * Gets the rest of the content model. * * <p> * You are getting this "catch-all" property because of the following reason: * The field name "High" is used by two different parts of a schema. See: * line 2463 of file:/Users/andrzejburyan/Documents/workspace/cdasample2/wsdl/CDA.xsd * line 2454 of file:/Users/andrzejburyan/Documents/workspace/cdasample2/wsdl/CDA.xsd * <p> * To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: * Gets the value of the rest property. * * <p> * 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 <CODE>set</CODE> method for the rest property. * * <p> * For example, to add a new item, do as follows: * <pre> * getRest().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link IVXBPPDPQ }{@code >} * {@link JAXBElement }{@code <}{@link PPDPQ }{@code >} * {@link JAXBElement }{@code <}{@link PPDPQ }{@code >} * {@link JAXBElement }{@code <}{@link IVXBPPDPQ }{@code >} * * */ public List<JAXBElement<? extends PPDPQ>> getRest() { if (rest == null) { rest = new ArrayList<JAXBElement<? extends PPDPQ>>(); } return this.rest; } }