A B D G I N O T W

A

Account - class Account.
A class for representing bank accounts.
Account(String, double) - Constructor for class Account
Creates an instance of Account.
accountNumber - Variable in class Account
Unique identifying number for an instance of Account.

B

balance - Variable in class Account
Current balance in this instance of Account.

D

deposit(double) - Method in class Account
Add an amount to the balance.

G

getAccountNumber() - Method in class Account
Retrieve the account number.
getBalance() - Method in class Account
Retrieve the current balance.
getInitialBalance() - Method in class Account
Retrieve the original balance.
getOwner() - Method in class Account
Retrieve the owner.

I

initialBalance - Variable in class Account
Original balance when this instance of Account was constructed.

N

nextAccountNumber - Static variable in class Account
Lowest unused account number, for generating unique identifying numbers for instances of Account.

O

owner - Variable in class Account
Name of the owner of an instance of Account.

T

toString() - Method in class Account
Returns a string representation of this object.

W

withdraw(double) - Method in class Account
Remove an amount from the balance.

A B D G I N O T W