Back to project page android-whereami.
The source code is released under:
GNU General Public License
If you think the Android project android-whereami 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 de.uvwxy.whereami.db_location; //from www .ja v a2 s . com import lombok.Getter; import lombok.Setter; public class Location { @Getter @Setter private double latitude; @Getter @Setter private double longitude; @Getter @Setter private double altitude; @Getter @Setter private double accuracy; @Getter @Setter private double bearing; @Getter @Setter private double speed; @Getter @Setter private long time; @Getter @Setter private String provider; @Getter @Setter private String name; }