//******************************************************************** // Friend.java Author: Lewis, Loftus, Stevens, Davis, Brenneman // Represents contact information for a friend. //******************************************************************** class Friend extends Contact { private String birthday, hometown, email; //----------------------------------------------------------------- // Sets up this friend using the specified information. //----------------------------------------------------------------- public Friend (String fname, String lname, String phone, String birth, String home, String email) { super(fname, lname, phone); // You need to put more code here for Friend information. } //----------------------------------------------------------------- // getInfo: Returns information about this Friend as a string. //----------------------------------------------------------------- public String toString () { String result = super.toString(); // You need to put more code here for Friend. return result; } }