//******************************************************************** // lab20.java Author: Lewis, Loftus, Stevens, Davis, Brenneman // // Demonstrates polymorphic processing. //******************************************************************** class lab20 { //----------------------------------------------------------------- // Creates a list of friends and business contacts and prints them. //----------------------------------------------------------------- public static void main (String[] args) { System.out.println("Addressbook being created and filled:"); AddressBook mybook = new AddressBook(); System.out.println("Printing my addressbook:"); System.out.println(mybook); } }