// // 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 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; import java.util.ArrayList; import java.util.List; /** * <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> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResourceMapType", propOrder = { "alias", "resourceMapSimpleExtensionGroup", "resourceMapObjectExtensionGroup" }) public class ResourceMapType extends AbstractObjectType { @XmlElement(name = "Alias") protected List<AliasType> alias; @XmlElement(name = "ResourceMapSimpleExtensionGroup") @XmlSchemaType(name = "anySimpleType") protected List<Object> resourceMapSimpleExtensionGroup; @XmlElement(name = "ResourceMapObjectExtensionGroup") protected 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<>(); } 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<>(); } 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<>(); } return this.resourceMapObjectExtensionGroup; } }