Back to project page elf.map.android.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project elf.map.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.
/* * License: Public Domain/* w w w .j a v a 2 s . co m*/ * Author: elf * EMail: elf198012@gmail.com */ package elf.map; public class NamedLocation extends Point{ public NamedLocation(){} public NamedLocation(String strName, long nLongitude, long nLatitude){ super(nLongitude, nLatitude); this.strName = strName; } public String strName; }