Advanced Programming

profileSiper
Contact.java

/* >>> Mobile phone Contacts Application You are an IT Support Administrator Specialist at SAU and are charged with the task of creating a program that implements a simple mobile phone contacts management with the following capabilities: • Add new contact • Modify contact • Search contact • Remove contact • Print all contact list information */ package Mobile_phone_Contacts_Application; public class Contact { private String name, phoneNumber; public Contact() { super(); } public Contact(String name, String phoneNumber) { super(); this.name = name; this.phoneNumber = phoneNumber; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPhoneNumber() { return phoneNumber; } public void setPoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } }