CECS 277
LAB ASSIGNMENT #6
Assigned date: 11/2
Due date: 11/9

15 points

Write a program that keeps a map in which the keys of the map are objects of class Employee. An employee should have a first name, a last name, and a unique integer employee identification. For the performance evaluation (Excellent, Good , Satisfactory, Improvement) changes and removals, lookup should be by employee identification. Prompt the user of the program to add or remove employees, to modify the performance, or to print all the performances including employee names. The printout should be sorted by last name. If two employees have the same last name, then use the first name as a tie breaker. If the first names are also identical, then use the integer employee identification. Supply compatible hashCode and equals methods to the Employee class. Test the hash code by adding the Employee objects to a hash set.

Implementing the following methods:

Hint:

GRADING