org.bremersee.opengis.kml.v22.Delete 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.XmlElementRef;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import org.bremersee.google.kml.v22.ext.TourType;
/**
* Java class for DeleteType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DeleteType", propOrder = {
"abstractFeatureGroups"
})
@XmlRootElement(name = "Delete")
public class Delete implements Serializable
{
private static final long serialVersionUID = 1L;
@XmlElementRef(name = "AbstractFeatureGroup", namespace = "http://www.opengis.net/kml/2.2", type = JAXBElement.class, required = false)
protected List> abstractFeatureGroups;
/**
* Gets the value of the abstractFeatureGroups 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 abstractFeatureGroups property.
*
*
* For example, to add a new item, do as follows:
*
* getAbstractFeatureGroups().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@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 >}
*
*
* @return
* The value of the abstractFeatureGroups property.
*/
public List> getAbstractFeatureGroups() {
if (abstractFeatureGroups == null) {
abstractFeatureGroups = new ArrayList<>();
}
return this.abstractFeatureGroups;
}
}