Back to project page LocBox.
The source code is released under:
MIT License
If you think the Android project LocBox 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.codebrane.locbox.model; /*from ww w . j a v a2s. c om*/ public class CBLocation { private int lat; private int lon; // getters public int getLat() { return lat; } public int getLon() { return lon; } // setters public void setLat(int lat) { this.lat = lat; } public void setLon(int lon) { this.lon = lon; } }