Back to project page HereIAm.
The source code is released under:
GNU General Public License
If you think the Android project HereIAm 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 cl.mamd.here.entity; /* www .ja v a 2 s . co m*/ /** * * @author mmoscoso * */ public class HerePoint { private String name; private double latitude; private double longitude; private double altitude; private float speed; private float accuracity; public HerePoint() { super(); } public HerePoint(double latitude, double longitude, double altitude, float speed, float accuracity) { super(); this.latitude = latitude; this.longitude = longitude; this.altitude = altitude; this.speed = speed; this.accuracity = accuracity; } public String getName() { return name; } public void setName(String name) { this.name = name; } public double getLatitude() { return latitude; } public void setLatitude(double latitude) { this.latitude = latitude; } public double getLongitude() { return longitude; } public void setLongitude(double longitude) { this.longitude = longitude; } public double getAltitude() { return altitude; } public void setAltitude(double altitude) { this.altitude = altitude; } public float getSpeed() { return speed; } public void setSpeed(float speed) { this.speed = speed; } public float getAccuracity() { return accuracity; } public void setAccuracity(float accuracity) { this.accuracity = accuracity; } }