Back to project page AU-Shuttle-Tracker-App.
The source code is released under:
GNU General Public License
If you think the Android project AU-Shuttle-Tracker-App 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 edu.american.student.util; /* w w w . j a v a 2 s . c o m*/ /** * Simply holds two lat longs * @author cam * */ public class LatLonPair { private LatLonPoint start; private LatLonPoint end; public LatLonPair(LatLonPoint latLonPoint, LatLonPoint latLonPoint2) { this.start=latLonPoint; this.end=latLonPoint2; } public LatLonPoint getStart() { return start; } public LatLonPoint getEnd() { return end; } }