// // 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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.HexBinaryAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import java.util.ArrayList; import java.util.List; /** * <p>Java class for AbstractOverlayType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AbstractOverlayType"> * <complexContent> * <extension base="{http://www.opengis.net/kml/2.2}AbstractFeatureType"> * <sequence> * <element ref="{http://www.opengis.net/kml/2.2}color" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}drawOrder" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}Icon" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}AbstractOverlaySimpleExtensionGroup" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}AbstractOverlayObjectExtensionGroup" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractOverlayType", propOrder = { "color", "drawOrder", "icon", "abstractOverlaySimpleExtensionGroup", "abstractOverlayObjectExtensionGroup" }) @XmlSeeAlso({ PhotoOverlayType.class, ScreenOverlayType.class, GroundOverlayType.class }) public abstract class AbstractOverlayType extends AbstractFeatureType { @XmlElement(type = String.class, defaultValue = "ffffffff") @XmlJavaTypeAdapter(HexBinaryAdapter.class) protected byte[] color; @XmlElement(defaultValue = "0") protected Integer drawOrder; @XmlElement(name = "Icon") protected LinkType icon; @XmlElement(name = "AbstractOverlaySimpleExtensionGroup") @XmlSchemaType(name = "anySimpleType") protected List<Object> abstractOverlaySimpleExtensionGroup; @XmlElement(name = "AbstractOverlayObjectExtensionGroup") protected List<AbstractObjectType> abstractOverlayObjectExtensionGroup; /** * Gets the value of the color property. * * @return * possible object is * {@link String } * */ public byte[] getColor() { return color; } /** * Sets the value of the color property. * * @param value * allowed object is * {@link String } * */ public void setColor(byte[] value) { this.color = value; } /** * Gets the value of the drawOrder property. * * @return * possible object is * {@link Integer } * */ public Integer getDrawOrder() { return drawOrder; } /** * Sets the value of the drawOrder property. * * @param value * allowed object is * {@link Integer } * */ public void setDrawOrder(Integer value) { this.drawOrder = value; } /** * Gets the value of the icon property. * * @return * possible object is * {@link LinkType } * */ public LinkType getIcon() { return icon; } /** * Sets the value of the icon property. * * @param value * allowed object is * {@link LinkType } * */ public void setIcon(LinkType value) { this.icon = value; } /** * Gets the value of the abstractOverlaySimpleExtensionGroup 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 abstractOverlaySimpleExtensionGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAbstractOverlaySimpleExtensionGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> getAbstractOverlaySimpleExtensionGroup() { if (abstractOverlaySimpleExtensionGroup == null) { abstractOverlaySimpleExtensionGroup = new ArrayList<>(); } return this.abstractOverlaySimpleExtensionGroup; } /** * Gets the value of the abstractOverlayObjectExtensionGroup 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 abstractOverlayObjectExtensionGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAbstractOverlayObjectExtensionGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AbstractObjectType } * * */ public List<AbstractObjectType> getAbstractOverlayObjectExtensionGroup() { if (abstractOverlayObjectExtensionGroup == null) { abstractOverlayObjectExtensionGroup = new ArrayList<>(); } return this.abstractOverlayObjectExtensionGroup; } }