// // 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.06.29 at 05:04:10 PM MESZ // package slash.navigation.lmx.binding; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * The landmarks coordinates type. Landmark coordinates must be specified in WGS84 format. * Latitude and longitude values are required. Restrictions applied to coordinate values. * * * <p>Java class for coordinatesType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="coordinatesType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="latitude"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="-90"/> * <maxInclusive value="90"/> * </restriction> * </simpleType> * </element> * <element name="longitude"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="-180"/> * <maxExclusive value="180"/> * </restriction> * </simpleType> * </element> * <element name="altitude" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/> * <element name="horizontalAccuracy" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}float"> * <minInclusive value="0"/> * </restriction> * </simpleType> * </element> * <element name="verticalAccuracy" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}float"> * <minInclusive value="0"/> * </restriction> * </simpleType> * </element> * <element name="timeStamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "coordinatesType", propOrder = { "latitude", "longitude", "altitude", "horizontalAccuracy", "verticalAccuracy", "timeStamp" }) public class CoordinatesType { protected double latitude; protected double longitude; protected Float altitude; protected Float horizontalAccuracy; protected Float verticalAccuracy; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar timeStamp; /** * 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 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 altitude property. * * @return * possible object is * {@link Float } * */ public Float getAltitude() { return altitude; } /** * Sets the value of the altitude property. * * @param value * allowed object is * {@link Float } * */ public void setAltitude(Float value) { this.altitude = value; } /** * Gets the value of the horizontalAccuracy property. * * @return * possible object is * {@link Float } * */ public Float getHorizontalAccuracy() { return horizontalAccuracy; } /** * Sets the value of the horizontalAccuracy property. * * @param value * allowed object is * {@link Float } * */ public void setHorizontalAccuracy(Float value) { this.horizontalAccuracy = value; } /** * Gets the value of the verticalAccuracy property. * * @return * possible object is * {@link Float } * */ public Float getVerticalAccuracy() { return verticalAccuracy; } /** * Sets the value of the verticalAccuracy property. * * @param value * allowed object is * {@link Float } * */ public void setVerticalAccuracy(Float value) { this.verticalAccuracy = value; } /** * Gets the value of the timeStamp property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTimeStamp() { return timeStamp; } /** * Sets the value of the timeStamp property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTimeStamp(XMLGregorianCalendar value) { this.timeStamp = value; } }