- date - Variable in class Flight
-
The date of the flight.
- destination - Variable in class Flight
-
The destination Airport
- distance - Variable in class Flight
-
The distance of the flight which must be calculated in the
constructor using the DistanceCalculator class.
- DistanceCalculator - Class in prob3
-
Contains a static method to get the distance between two pairs of latitude
and longitude and this class has been provided to you.
- DistanceCalculator() - Constructor for class DistanceCalculator
-
- doesDateMatch(Flight, Flight) - Method in class Trip
-
Optional, this is a helper method I wrote.
- doesDestinationOriginMatch(Flight, Flight) - Method in class Trip
-
Optional, this is a helper method I wrote.
- doesMatchDate(LocalDate, Flight) - Method in class FlightManager
-
Optional, this is a helper method I wrote.
- doesMatchDestination(String, Flight) - Method in class FlightManager
-
Optional, this is a helper method I wrote.
- doesMatchOrigin(String, Flight) - Method in class FlightManager
-
Optional, this is a helper method I wrote.