Back to project page sigimera-android-app.
The source code is released under:
GNU General Public License
If you think the Android project sigimera-android-app 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 org.sigimera.app.android.model; //from ww w . ja v a 2s.c o m public class UserSettings extends User{ public int radius; public double latitude; public double longitude; public UserSettings(){ super(); } /** * Setter */ public void setRadius(int radius) { this.radius = radius; } public void setLatitude(double latitude) { this.latitude = latitude; } public void setLongitude(double longitude) { this.longitude = longitude; } /** * Getter */ public int getRadius() { return radius; } public double getLatitude() { return latitude; } public double getLongitude() { return longitude; } }