// // 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: 2009.02.17 at 01:40:15 PM MEZ // package slash.navigation.kml.binding20; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlID; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element ref="{http://earth.google.com/kml/2.0}longitude"/> * <element ref="{http://earth.google.com/kml/2.0}latitude"/> * <element ref="{http://earth.google.com/kml/2.0}range"/> * <element ref="{http://earth.google.com/kml/2.0}tilt"/> * <element ref="{http://earth.google.com/kml/2.0}heading"/> * <element ref="{http://earth.google.com/kml/2.0}timePosition" minOccurs="0"/> * </all> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) @XmlRootElement(name = "LookAt") public class LookAt { protected double longitude; protected double latitude; protected double range; protected double tilt; protected double heading; protected String timePosition; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID protected String id; /** * Gets the value of the longitude property. * */ public double getLongitude() { return longitude; } /** * Sets the value of the longitude property. * */ public void setLongitude(double value) { this.longitude = value; } /** * Gets the value of the latitude property. * */ public double getLatitude() { return latitude; } /** * Sets the value of the latitude property. * */ public void setLatitude(double value) { this.latitude = value; } /** * Gets the value of the range property. * */ public double getRange() { return range; } /** * Sets the value of the range property. * */ public void setRange(double value) { this.range = value; } /** * Gets the value of the tilt property. * */ public double getTilt() { return tilt; } /** * Sets the value of the tilt property. * */ public void setTilt(double value) { this.tilt = value; } /** * Gets the value of the heading property. * */ public double getHeading() { return heading; } /** * Sets the value of the heading property. * */ public void setHeading(double value) { this.heading = value; } /** * Gets the value of the timePosition property. * * @return * possible object is * {@link String } * */ public String getTimePosition() { return timePosition; } /** * Sets the value of the timePosition property. * * @param value * allowed object is * {@link String } * */ public void setTimePosition(String value) { this.timePosition = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } }