Android Open Source - AU-Shuttle-Tracker-App Lat Lon Pair






From Project

Back to project page AU-Shuttle-Tracker-App.

License

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.

Java Source Code

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;
  }
  

}




Java Source Code List

edu.american.student.AUBusTrackerActivity.java
edu.american.student.BlueRoute.java
edu.american.student.Bus.java
edu.american.student.DotMapOverlay.java
edu.american.student.RedRoute.java
edu.american.student.RouteOverlay.java
edu.american.student.ShareRoute.java
edu.american.student.util.GPSQueue.java
edu.american.student.util.HTTPObject.java
edu.american.student.util.LatLonPair.java
edu.american.student.util.LatLonPoint.java