// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // 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: 2015.10.28 at 03:39:26 PM CET // package slash.navigation.datasources.binding; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * * a position is a point on the globe defined by longitude and latitude * * * <p>Java class for positionType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="positionType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="longitude" use="required" type="{http://www.w3.org/2001/XMLSchema}double" /> * <attribute name="latitude" use="required" type="{http://www.w3.org/2001/XMLSchema}double" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "positionType") public class PositionType { @XmlAttribute(name = "longitude", required = true) protected double longitude; @XmlAttribute(name = "latitude", required = true) protected double latitude; /** * 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; } }