Uses of Class
location.Longitude

Packages that use Longitude
location   
location.generators   
 

Uses of Longitude in location
 

Fields in location declared as Longitude
private  Longitude Location.longitude
          The longitude.
private  Longitude GPSInfo.longitude
          longitude information
 

Methods in location that return Longitude
 Longitude Location.getLongitude()
          Accessor method to the longitude.
 Longitude GPSInfo.getLongitude()
          Returns the longitude.
 

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

Uses of Longitude in location.generators
 

Fields in location.generators declared as Longitude
(package private)  Longitude RealGPSMonitor.longitude
           
static Longitude FakeGPSMonitor.DEFAULT_LONGITUDE
          The default longitude is (90 18.389986' W)
(package private)  Longitude FakeGPSMonitor.currLong
           
(package private)  Longitude FakeGPSMonitor.defaultLong
           
 

Methods in location.generators that return Longitude
(package private)  Longitude FakeGPSMonitor.getDefaultLongitude()
          Returns the default (starting) longitude.
 

Methods in location.generators with parameters of type Longitude
(package private)  void FakeGPSgui.updateNxtLong(Longitude log)
          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 Longitude
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.