//******************************************************************** // BusAssoc.java Author: Lewis, Loftus, Stevens, Davis, Brenneman // Represents contact information for a business associate. //******************************************************************** public class BusAssoc extends Contact { protected String cellNumber, FAXNumber, secretaryPhone, businessType; //----------------------------------------------------------------- // Sets up a business contact with the specified information. //----------------------------------------------------------------- public BusAssoc (String fname, String lname, String phone, String cell, String FAX, String secPhone, String BusType) { // You need to fill in all of the code here for a BusAssoc. } //----------------------------------------------------------------- // getInfo: Returns information about a business contact as a string. //----------------------------------------------------------------- public String toString () { // You need to fill in all of the code here for a BusAssoc. } }