Back to project page TravelBar.
The source code is released under:
Apache License
If you think the Android project TravelBar 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 com.bourke.travelbar; //from w w w .j a v a2 s .com public class DestinationChangedEvent { public final double lat; public final double lon; public DestinationChangedEvent(double lat, double lon) { this.lat = lat; this.lon = lon; } @Override public String toString() { return new StringBuilder("(") // .append(lat) // .append(", ") // .append(lon) // .append(")") // .toString(); } }