RegularAccount.java is a class that implements a "regular" bank account. This class extends MinimumAccount.
ConstructorReceives: the name, pin, and initial balance:
Postcondition: superclass constructor has been called, the initial balance has been set:
static public final double MINIMUM = 500.00The minimum balance for a regular account.
static public final double PENALTY = 10.00
The penalty for a regular account if the balance falls below the minimum.
Back to the package documentation index