Uses of Class
airline.User

Uses of User in airline
 

Subclasses of User in airline
 class Administrator
          Represents a User with administrative privileges.
 class Customer
          Represents a User who is a customer of the airline (i.e., one who can make and purchase reservations).
 

Methods in airline that return User
 User AirlineSystem.getUser(String ID)
          Returns the User associated with the given ID.
 User TextConnection.loginDialog()
           
abstract  User Connection.loginDialog()
          This dialog manages the login process.
 

Methods in airline that return types with arguments of type User
 Iterator<User> AirlineSystem.getAllUsers()
          Returns an array of all flights currently in the system.
 

Methods in airline with parameters of type User
 void AirlineSystem.addUser(User usr)
          Adds a User to the system.