// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-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: 2010.07.01 at 11:31:21 PM CEST // package pl.relationsystems.citynav.parser.hubs; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <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"> * <attribute name="latitude" use="required" type="{http://www.w3.org/2001/XMLSchema}double" /> * <attribute name="longitude" use="required" type="{http://www.w3.org/2001/XMLSchema}double" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "location") public class Location { @XmlAttribute(required = true) protected double latitude; @XmlAttribute(required = true) protected double longitude; /** * 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; } }