/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.kml.xml.v220; 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.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for KmlType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="KmlType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.opengis.net/kml/2.2}NetworkLinkControl" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}AbstractFeatureGroup" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}KmlSimpleExtensionGroup" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}KmlObjectExtensionGroup" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="hint" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KmlType", propOrder = { "networkLinkControl", "abstractFeatureGroup", "kmlSimpleExtensionGroup", "kmlObjectExtensionGroup" }) public class KmlType { @XmlElement(name = "NetworkLinkControl") private NetworkLinkControlType networkLinkControl; @XmlElementRef(name = "AbstractFeatureGroup", namespace = "http://www.opengis.net/kml/2.2", type = JAXBElement.class) private JAXBElement<? extends AbstractFeatureType> abstractFeatureGroup; @XmlElement(name = "KmlSimpleExtensionGroup") @XmlSchemaType(name = "anySimpleType") private List<Object> kmlSimpleExtensionGroup; @XmlElement(name = "KmlObjectExtensionGroup") private List<AbstractObjectType> kmlObjectExtensionGroup; @XmlAttribute private String hint; /** * Gets the value of the networkLinkControl property. * * @return * possible object is * {@link NetworkLinkControlType } * */ public NetworkLinkControlType getNetworkLinkControl() { return networkLinkControl; } /** * Sets the value of the networkLinkControl property. * * @param value * allowed object is * {@link NetworkLinkControlType } * */ public void setNetworkLinkControl(final NetworkLinkControlType value) { this.networkLinkControl = value; } /** * Gets the value of the abstractFeatureGroup property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link AbstractContainerType }{@code >} * {@link JAXBElement }{@code <}{@link PlacemarkType }{@code >} * {@link JAXBElement }{@code <}{@link ScreenOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link GroundOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link DocumentType }{@code >} * {@link JAXBElement }{@code <}{@link NetworkLinkType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractFeatureType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link PhotoOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link FolderType }{@code >} * */ public JAXBElement<? extends AbstractFeatureType> getAbstractFeatureGroup() { return abstractFeatureGroup; } /** * Sets the value of the abstractFeatureGroup property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link AbstractContainerType }{@code >} * {@link JAXBElement }{@code <}{@link PlacemarkType }{@code >} * {@link JAXBElement }{@code <}{@link ScreenOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link GroundOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link DocumentType }{@code >} * {@link JAXBElement }{@code <}{@link NetworkLinkType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractFeatureType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link PhotoOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link FolderType }{@code >} * */ public void setAbstractFeatureGroup(final JAXBElement<? extends AbstractFeatureType> value) { this.abstractFeatureGroup = ((JAXBElement<? extends AbstractFeatureType> ) value); } /** * Gets the value of the kmlSimpleExtensionGroup 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 kmlSimpleExtensionGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getKmlSimpleExtensionGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> getKmlSimpleExtensionGroup() { if (kmlSimpleExtensionGroup == null) { kmlSimpleExtensionGroup = new ArrayList<Object>(); } return this.kmlSimpleExtensionGroup; } /** * Gets the value of the kmlObjectExtensionGroup 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 kmlObjectExtensionGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getKmlObjectExtensionGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AbstractObjectType } * * */ public List<AbstractObjectType> getKmlObjectExtensionGroup() { if (kmlObjectExtensionGroup == null) { kmlObjectExtensionGroup = new ArrayList<AbstractObjectType>(); } return this.kmlObjectExtensionGroup; } /** * Gets the value of the hint property. * * @return * possible object is * {@link String } * */ public String getHint() { return hint; } /** * Sets the value of the hint property. * * @param value * allowed object is * {@link String } * */ public void setHint(final String value) { this.hint = value; } }