- Account - Class in atm.app
-
Represents one bank account.
- Account(int, int, double, double) - Constructor for class atm.app.Account
-
Account constructor initializes the attributes from the parameters.
- ATM - Class in atm.app
-
Represents an automated teller machine.
- ATM() - Constructor for class atm.app.ATM
-
The no-parameter constructor initializes instance variable.
- atm.app - package atm.app
-
- AtmApp - Class in atm.app
-
The driver for the ATM application.
- AtmApp() - Constructor for class atm.app.AtmApp
-
- authenticateUser(int, int) - Method in class atm.app.BankDatabase
-
Determines whether a user-specified account number and PIN match those
of an account in the database.