Recall the class Employee. . .
// An instance of Employee contains a person's name,
// salary, and year hired. It has a constructor and
// methods for raising the salary, printing the data, and
// retrieving the person's name and the year hired.
public String name; // The person's name
public double pay; // The person's yearly salary
public int hireDate; // The year hired