Back to project page gpsplayer.
The source code is released under:
GNU General Public License
If you think the Android project gpsplayer 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 heigvd.iict.gpsplayer.events; //from ww w . j a v a 2 s .c o m import heigvd.iict.gpsplayer.data.TrackPoint; // Event sent when RunTrackService sends a new location to LocationManager public class LocationSentEvent { public final TrackPoint point; public LocationSentEvent(TrackPoint p) { this.point = p; } @Override public String toString() { return "LocationSentEvent["+point.toString()+"]"; } }