public class PhoneBookEntry
{
private String name;
private String phoneNumber;

/**
* The PhoneBookEntry is a constructor that takes two strings as inputs
* @param n for name field
...