// // 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 ScreenOverlayType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ScreenOverlayType"> * <complexContent> * <extension base="{http://www.opengis.net/kml/2.2}AbstractOverlayType"> * <sequence> * <element ref="{http://www.opengis.net/kml/2.2}overlayXY" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}screenXY" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}rotationXY" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}size" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}rotation" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}ScreenOverlaySimpleExtensionGroup" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.opengis.net/kml/2.2}ScreenOverlayObjectExtensionGroup" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ScreenOverlayType", propOrder = { "overlayXY", "screenXY", "rotationXY", "size", "rotation", "screenOverlaySimpleExtensionGroup", "screenOverlayObjectExtensionGroup" }) public class ScreenOverlayType extends AbstractOverlayType { protected Vec2Type overlayXY; protected Vec2Type screenXY; protected Vec2Type rotationXY; protected Vec2Type size; @XmlElement(defaultValue = "0.0") protected Double rotation; @XmlElement(name = "ScreenOverlaySimpleExtensionGroup") @XmlSchemaType(name = "anySimpleType") protected List<Object> screenOverlaySimpleExtensionGroup; @XmlElement(name = "ScreenOverlayObjectExtensionGroup") protected List<AbstractObjectType> screenOverlayObjectExtensionGroup; /** * Gets the value of the overlayXY property. * * @return * possible object is * {@link Vec2Type } * */ public Vec2Type getOverlayXY() { return overlayXY; } /** * Sets the value of the overlayXY property. * * @param value * allowed object is * {@link Vec2Type } * */ public void setOverlayXY(Vec2Type value) { this.overlayXY = value; } /** * Gets the value of the screenXY property. * * @return * possible object is * {@link Vec2Type } * */ public Vec2Type getScreenXY() { return screenXY; } /** * Sets the value of the screenXY property. * * @param value * allowed object is * {@link Vec2Type } * */ public void setScreenXY(Vec2Type value) { this.screenXY = value; } /** * Gets the value of the rotationXY property. * * @return * possible object is * {@link Vec2Type } * */ public Vec2Type getRotationXY() { return rotationXY; } /** * Sets the value of the rotationXY property. * * @param value * allowed object is * {@link Vec2Type } * */ public void setRotationXY(Vec2Type value) { this.rotationXY = value; } /** * Gets the value of the size property. * * @return * possible object is * {@link Vec2Type } * */ public Vec2Type getSize() { return size; } /** * Sets the value of the size property. * * @param value * allowed object is * {@link Vec2Type } * */ public void setSize(Vec2Type value) { this.size = value; } /** * Gets the value of the rotation property. * * @return * possible object is * {@link Double } * */ public Double getRotation() { return rotation; } /** * Sets the value of the rotation property. * * @param value * allowed object is * {@link Double } * */ public void setRotation(Double value) { this.rotation = value; } /** * Gets the value of the screenOverlaySimpleExtensionGroup 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 screenOverlaySimpleExtensionGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getScreenOverlaySimpleExtensionGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> getScreenOverlaySimpleExtensionGroup() { if (screenOverlaySimpleExtensionGroup == null) { screenOverlaySimpleExtensionGroup = new ArrayList<>(); } return this.screenOverlaySimpleExtensionGroup; } /** * Gets the value of the screenOverlayObjectExtensionGroup 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 screenOverlayObjectExtensionGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getScreenOverlayObjectExtensionGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AbstractObjectType } * * */ public List<AbstractObjectType> getScreenOverlayObjectExtensionGroup() { if (screenOverlayObjectExtensionGroup == null) { screenOverlayObjectExtensionGroup = new ArrayList<>(); } return this.screenOverlayObjectExtensionGroup; } }