Uses of Class
location.Latitude

Packages that use Latitude
location   
location.generators   
 

Uses of Latitude in location
 

Fields in location declared as Latitude
private  Latitude Location.latitude
          The latitude.
private  Latitude GPSInfo.latitude
          latitude information
 

Methods in location that return Latitude
 Latitude Location.getLatitude()
          Accessor method to the latitude.
 Latitude GPSInfo.getLatitude()
          Returns the latitude.
 

Constructors in location with parameters of type Latitude
Location(Latitude lat, Longitude lon)
          Constructor.
Latitude(Latitude lat)
          The copy constructor.
GPSInfo(Latitude latitude, Longitude longitude, double knots, LocationDate date, boolean validity)
          The constructor.
 

Uses of Latitude in location.generators
 

Fields in location.generators declared as Latitude
(package private)  Latitude RealGPSMonitor.latitude
           
static Latitude FakeGPSMonitor.DEFAULT_LATITUDE
          The default latitude is (38 38.8935' N)
(package private)  Latitude FakeGPSMonitor.currLat
           
(package private)  Latitude FakeGPSMonitor.defaultLat
           
 

Methods in location.generators that return Latitude
(package private)  Latitude FakeGPSMonitor.getDefaultLatitude()
          Returns the default (starting) latitude.
 

Methods in location.generators with parameters of type Latitude
(package private)  void FakeGPSgui.updateNxtLat(Latitude lat)
          Called by the FakeGPSMonitor when it changes the position that it will use within its location event propagation.
 

Constructors in location.generators with parameters of type Latitude
FakeGPSMonitor(long updatePeriod, Latitude defaultLat, Longitude defaultLong)
          Creates a FakeGPSMonitor with the starting location as specified by the parameter without reporting its location to a RoutSimulatorServer and default increment.
FakeGPSMonitor(long interval, Latitude defaultLat, Longitude defaultLong, double latStep, double longStep, boolean showGUI)
          Creates a FakeGPSMonitor with the starting location as specified by the parameter.
FakeGPSgui(FakeGPSMonitor fgm, Latitude nxtLat, Longitude nxtLong)
          The Constructor.