// Helene Martin, CSE 142 // Creates an account, uses its methods public class AccountClient { public static void main(String[] args) { BankAccount acct1 = new BankAccount(1234, 1000, "Caitlin"); //acct1.username = "Helene"; //acct1.balance = 60000; //nice try -- fields are encapsulated, now! System.out.println(acct1.getName()); acct1.deposit(10000); acct1.withdraw(60000); } }