/** * A simple bank account specification - CSE142 lecture 1/15/03 * @author Hal Perkins */ public class BankAccount { /** Return the current balance of this BankAccount */ public double getBalance() { } /** Return this BankAccount's name */ public String getName() { } /** Return this BankAccount's number */ public int getNumber() { } /** set this BankAccount's name to newName */ public void setName(String newName) { } /** set this BankAccount's number to newNumber */ public void setNumber(int newNumber) { } /** Deposit amount in this BankAccount */ public void deposit(double amount) { } /** Initialize a new BankAccount with the given * account name and number and a balance of 0.0 */ public BankAccount(int accountNumber, String accountName){ } }