/* Author : Michael Robinson Program : wholesaleCustomer.java Purpose : This is a sub-class that inherits from the superCustomer super-class Updated : September 1, 2099 */ public class wholesaleCustomer extends superCustomer { public String name = "The Cheese Makersss"; public String customerType = "wholesaleCustomer"; public String getCustomerType() { return ( customerType ); }//end public String getCustomerType() public String getCustomerName() { return ( name ); }//end public String getCustomerName() }//end public class wholesaleCustomer extends superCustomer