- debit(double) - Method in class atm.app.Account
-
Debits an amount from the account.
- debit(int, double) - Method in class atm.app.BankDatabase
-
Debits an amount from the Account object for the account number.
- Deposit - Class in atm.app
-
Class Deposit represents an ATM deposit transaction.
- Deposit(int, Screen, BankDatabase, Keypad, DepositSlot) - Constructor for class atm.app.Deposit
-
Calls superclass Transaction to initialize the account number, screen and
bank database objects for this transaction and then sets the keypad and
cash dispenser objects to the values from the parameters.
- DepositSlot - Class in atm.app
-
Represents the deposit slot of the ATM.
- DepositSlot() - Constructor for class atm.app.DepositSlot
-
- dispenseCash(int) - Method in class atm.app.CashDispenser
-
Simulates the dispensing of the specified amount of cash.
- displayDollarAmount(double) - Method in class atm.app.Screen
-
Display a dollar amount.
- displayMessage(String) - Method in class atm.app.Screen
-
Display a message without a carriage return.
- displayMessageLine(String) - Method in class atm.app.Screen
-
Display a message with a carriage return.