Back to project page helsinki-testbed2-android.
The source code is released under:
GNU General Public License
If you think the Android project helsinki-testbed2-android 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 fi.testbed2.domain; /*ww w .j av a 2 s .c o m*/ import lombok.Data; import lombok.NonNull; /** * Represents a municipality ("Kunta" in Finnish) */ @Data public class Municipality { @NonNull private String name; @NonNull private MapLocationGPS gpsPos; @NonNull private MapLocationXY xyPos; }