/* * 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.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ResourceMapType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ResourceMapType"> * <complexContent> * <extension base="{http://www.opengis.net/kml/2.2}AbstractObjectType"> * <sequence> * <element ref="{http://www.opengis.net/kml/2.2}Alias" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}ResourceMapSimpleExtensionGroup" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}ResourceMapObjectExtensionGroup" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResourceMapType", propOrder = { "alias", "resourceMapSimpleExtensionGroup", "resourceMapObjectExtensionGroup" }) public class ResourceMapType extends AbstractObjectType { @XmlElement(name = "Alias") private List<AliasType> alias; @XmlElement(name = "ResourceMapSimpleExtensionGroup") @XmlSchemaType(name = "anySimpleType") private List<Object> resourceMapSimpleExtensionGroup; @XmlElement(name = "ResourceMapObjectExtensionGroup") private List<AbstractObjectType> resourceMapObjectExtensionGroup; /** * Gets the value of the alias 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 alias property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAlias().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AliasType } * * */ public List<AliasType> getAlias() { if (alias == null) { alias = new ArrayList<AliasType>(); } return this.alias; } /** * Gets the value of the resourceMapSimpleExtensionGroup 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 resourceMapSimpleExtensionGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getResourceMapSimpleExtensionGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> getResourceMapSimpleExtensionGroup() { if (resourceMapSimpleExtensionGroup == null) { resourceMapSimpleExtensionGroup = new ArrayList<Object>(); } return this.resourceMapSimpleExtensionGroup; } /** * Gets the value of the resourceMapObjectExtensionGroup 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 resourceMapObjectExtensionGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getResourceMapObjectExtensionGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AbstractObjectType } * * */ public List<AbstractObjectType> getResourceMapObjectExtensionGroup() { if (resourceMapObjectExtensionGroup == null) { resourceMapObjectExtensionGroup = new ArrayList<AbstractObjectType>(); } return this.resourceMapObjectExtensionGroup; } }