import java.util.*; //MISSING CODE --YOU WILL HAVE TO ADD THE implements to class BankAccount below //This is for steps 1a, 2a, 3a public class BankAccount { private static int nextAccountNumber = 10000; //initial value of transaction numbers private int accountNumber; private double balance; private String owner; //name of customer who owns the account public BankAccount(String customerName, double openingBalance){ owner = customerName; accountNumber = ++nextAccountNumber; balance = openingBalance; } public String toString(){ return "#" + accountNumber + " $" + balance + " owner: " + owner; } //Interface MoneyAccount Methods //=============================== //MISSING CODE (Step 1b) //Interface Printable Methods //============================ //MISSING CODE (Step 2b) //Interface Sortable Methods //============================ //MISSING CODE (Step 3b) } //end class BankAccount