public class PhoneRecord { /* * Creates a PhoneRecord object with the values specified in the constructor */ public PhoneRecord(String firstName, String lastName, String phoneNumber) { } /** * Returns first name (in all upper case) associated with the record */ public String getFirstName() { } /** * Returns last name (in all upper case) associated with the record */ public String getLastName() { } /** * Returns phone number (with no dashes) */ public String getPhoneNumber() { } }