package adress.data; /** * AddressEnttry is a class to represent a contact in the AdressBook * It contains contact information, etc. for the related person */ public class AddressEntry { /** * first name of person */ String firstName; AddressEntry(String firstName){ this.firstName = firstName; } /** * getter for firstName * @return */ public String getFirstName() { return firstName; } /** * setter for firstName * @param firstName */ public void setFirstName(String firstName) { this.firstName = firstName; } }