// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.08.13 at 10:12:26 PM MESZ // package slash.navigation.kml.binding22; import slash.navigation.kml.binding22gx.TourType; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import java.util.ArrayList; import java.util.List; /** * <p>Java class for DocumentType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="DocumentType"> * <complexContent> * <extension base="{http://www.opengis.net/kml/2.2}AbstractContainerType"> * <sequence> * <element ref="{http://www.opengis.net/kml/2.2}Schema" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}AbstractFeatureGroup" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}DocumentSimpleExtensionGroup" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}DocumentObjectExtensionGroup" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DocumentType", propOrder = { "schema", "abstractFeatureGroup", "documentSimpleExtensionGroup", "documentObjectExtensionGroup" }) public class DocumentType extends AbstractContainerType { @XmlElement(name = "Schema") protected List<SchemaType> schema; @XmlElementRef(name = "AbstractFeatureGroup", namespace = "http://www.opengis.net/kml/2.2", type = JAXBElement.class) protected List<JAXBElement<? extends AbstractFeatureType>> abstractFeatureGroup; @XmlElement(name = "DocumentSimpleExtensionGroup") @XmlSchemaType(name = "anySimpleType") protected List<Object> documentSimpleExtensionGroup; @XmlElement(name = "DocumentObjectExtensionGroup") protected List<AbstractObjectType> documentObjectExtensionGroup; /** * Gets the value of the schema 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 schema property. * * <p> * For example, to add a new item, do as follows: * <pre> * getSchema().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link SchemaType } * * */ public List<SchemaType> getSchema() { if (schema == null) { schema = new ArrayList<>(); } return this.schema; } /** * Gets the value of the abstractFeatureGroup 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 abstractFeatureGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAbstractFeatureGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link AbstractFeatureType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractContainerType }{@code >} * {@link JAXBElement }{@code <}{@link NetworkLinkType }{@code >} * {@link JAXBElement }{@code <}{@link TourType }{@code >} * {@link JAXBElement }{@code <}{@link FolderType }{@code >} * {@link JAXBElement }{@code <}{@link PhotoOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link ScreenOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link PlacemarkType }{@code >} * {@link JAXBElement }{@code <}{@link GroundOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link DocumentType }{@code >} * * */ public List<JAXBElement<? extends AbstractFeatureType>> getAbstractFeatureGroup() { if (abstractFeatureGroup == null) { abstractFeatureGroup = new ArrayList<>(); } return this.abstractFeatureGroup; } /** * Gets the value of the documentSimpleExtensionGroup 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 documentSimpleExtensionGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDocumentSimpleExtensionGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> getDocumentSimpleExtensionGroup() { if (documentSimpleExtensionGroup == null) { documentSimpleExtensionGroup = new ArrayList<>(); } return this.documentSimpleExtensionGroup; } /** * Gets the value of the documentObjectExtensionGroup 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 documentObjectExtensionGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDocumentObjectExtensionGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AbstractObjectType } * * */ public List<AbstractObjectType> getDocumentObjectExtensionGroup() { if (documentObjectExtensionGroup == null) { documentObjectExtensionGroup = new ArrayList<>(); } return this.documentObjectExtensionGroup; } }