Back to project page spotastop.
The source code is released under:
MIT License
If you think the Android project spotastop listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.cipciop.spotastop.domain; /* w w w. ja v a 2 s . c o m*/ public class GeoPos { private double latitude; private double longitude; private String addressName; public GeoPos() { } public GeoPos(double latitude, double longitude) { this.setLatitude(latitude); this.setLongitude(longitude); } public void setLatitude(double latitude) { this.latitude = latitude; } public double getLatitude() { return this.latitude; } public void setLongitude(double longitude) { this.longitude = longitude; } public double getLongitude() { return this.longitude; } public void setAddressName(String addressName) { this.addressName = addressName; } public String getAddressName() { return this.addressName; } }