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