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.service; /*from ww w. j a va2 s.c o m*/ import fi.testbed2.domain.MapLocationGPS; import fi.testbed2.domain.MapLocationXY; public interface LocationService { public static final String LOCATION_PROVIDER_FIXED = "fixed"; public MapLocationGPS getUserLastLocation(); public MapLocationXY getUserLocationXY(); public void startListeningLocationChanges(); public void stopListeningLocationChanges(); }