All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bremersee.opengis.kml.v22.Kml Maven / Gradle / Ivy

//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
//


package org.bremersee.opengis.kml.v22;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElementRef;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import org.bremersee.google.kml.v22.ext.TourType;


/**
 * 

Java class for KmlType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *       
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KmlType", propOrder = { "networkLinkControl", "abstractFeatureGroup", "kmlSimpleExtensionGroups", "kmlObjectExtensionGroups" }) @XmlRootElement(name = "kml") public class Kml implements Serializable { private static final long serialVersionUID = 1L; @XmlElement(name = "NetworkLinkControl") protected NetworkLinkControl networkLinkControl; @XmlElementRef(name = "AbstractFeatureGroup", namespace = "http://www.opengis.net/kml/2.2", type = JAXBElement.class, required = false) protected JAXBElement abstractFeatureGroup; @XmlElement(name = "KmlSimpleExtensionGroup") protected List kmlSimpleExtensionGroups; @XmlElement(name = "KmlObjectExtensionGroup") protected List kmlObjectExtensionGroups; @XmlAttribute(name = "hint") protected String hint; /** * Gets the value of the networkLinkControl property. * * @return * possible object is * {@link NetworkLinkControl } * */ public NetworkLinkControl getNetworkLinkControl() { return networkLinkControl; } /** * Sets the value of the networkLinkControl property. * * @param value * allowed object is * {@link NetworkLinkControl } * */ public void setNetworkLinkControl(NetworkLinkControl value) { this.networkLinkControl = value; } /** * Gets the value of the abstractFeatureGroup property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link TourType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractContainerType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractFeatureType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link DocumentType }{@code >} * {@link JAXBElement }{@code <}{@link FolderType }{@code >} * {@link JAXBElement }{@code <}{@link GroundOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link NetworkLinkType }{@code >} * {@link JAXBElement }{@code <}{@link PhotoOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link PlacemarkType }{@code >} * {@link JAXBElement }{@code <}{@link ScreenOverlayType }{@code >} * */ public JAXBElement getAbstractFeatureGroup() { return abstractFeatureGroup; } /** * Sets the value of the abstractFeatureGroup property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link TourType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractContainerType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractFeatureType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link DocumentType }{@code >} * {@link JAXBElement }{@code <}{@link FolderType }{@code >} * {@link JAXBElement }{@code <}{@link GroundOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link NetworkLinkType }{@code >} * {@link JAXBElement }{@code <}{@link PhotoOverlayType }{@code >} * {@link JAXBElement }{@code <}{@link PlacemarkType }{@code >} * {@link JAXBElement }{@code <}{@link ScreenOverlayType }{@code >} * */ public void setAbstractFeatureGroup(JAXBElement value) { this.abstractFeatureGroup = value; } /** * Gets the value of the kmlSimpleExtensionGroups property. * *

* 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 Jakarta XML Binding object. * This is why there is not a {@code set} method for the kmlSimpleExtensionGroups property. * *

* For example, to add a new item, do as follows: *

     *    getKmlSimpleExtensionGroups().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * * * @return * The value of the kmlSimpleExtensionGroups property. */ public List getKmlSimpleExtensionGroups() { if (kmlSimpleExtensionGroups == null) { kmlSimpleExtensionGroups = new ArrayList<>(); } return this.kmlSimpleExtensionGroups; } /** * Gets the value of the kmlObjectExtensionGroups property. * *

* 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 Jakarta XML Binding object. * This is why there is not a {@code set} method for the kmlObjectExtensionGroups property. * *

* For example, to add a new item, do as follows: *

     *    getKmlObjectExtensionGroups().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AbstractObjectType } * * * @return * The value of the kmlObjectExtensionGroups property. */ public List getKmlObjectExtensionGroups() { if (kmlObjectExtensionGroups == null) { kmlObjectExtensionGroups = new ArrayList<>(); } return this.kmlObjectExtensionGroups; } /** * 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(String value) { this.hint = value; } }