A B C D E F G I L M N O P R S T U V

F

Flight - Class in airline
Represents a single flight in the airline system.
Flight(String, String, String, int, String) - Constructor for class airline.Flight
Instantiates a new Flight instance.
Flight.Ticket - Class in airline
For each passenger on the flight, there is an underlying Ticket that is used to track the seating assignment for the passenger on the flight as well as to trace this passenger back to an original Reservation.
Flight.Ticket(Reservation, int, String) - Constructor for class airline.Flight.Ticket
Initialize an underlying seat assignment that will be given as a reference to the Reservation when booking the seat.
flights - Variable in class airline.AirlineSystem
The set of flights for the airline system
fullName - Variable in class airline.Customer
Full name of customer (needed as a passenger).

A B C D E F G I L M N O P R S T U V