//package cis223.Bank; /* Class Customer - data fields: name, address, age, telephone number Classes Senior, Adult, Student extend Customer Each has data fields: interest, checkCharge, and overdraft penalty that define these values for customer's of that type. */ public class Customer { protected String name; protected String address1; protected String address2; protected int age; protected String telNumber; protected double penalty; protected double checkCharge; protected double savingsInterest; protected double checkingInterest; public Customer() { } public Customer(String n, String add1, String add2, String tN, int age, double p, double cC, double s, double cI) { name = n; address1 = add1; address2 = add2; telNumber = tN; this.age = age; penalty = p; checkCharge = cC; savingsInterest = s; checkingInterest = cI; } public String getName() { return name; } public String toString() { } }