import java.util.*; public class Contact { private String name=null; private String phone=null; private String email=null; public Contact() { } public String getName() { return this.name; } public void setName(String myName) { this.name = myName; } public String getPhone() { return this.phone; } public void setPhone(String myPhone) { this.phone = myPhone; } public String getEmail() { return this.email; } public void setEmail(String myEmail) { this.email = myEmail; } }