// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-fcs // 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: 2008.10.12 at 02:39:09 PM CEST // package slash.navigation.kml.binding22beta; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <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://earth.google.com/kml/2.2}AbstractOverlayType"> * <sequence> * <element ref="{http://earth.google.com/kml/2.2}overlayXY" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}screenXY" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}rotationXY" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}size" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}rotation" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ScreenOverlayType", propOrder = { "overlayXY", "screenXY", "rotationXY", "size", "rotation" }) public class ScreenOverlayType extends AbstractOverlayType { protected Vec2Type overlayXY; protected Vec2Type screenXY; protected Vec2Type rotationXY; protected Vec2Type size; @XmlElement(defaultValue = "0.0") protected Double rotation; /** * 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; } }