This class will do the following: - The class will have a menu system that will allow the following (4 points each) (1) Create database - This creates the ArrayList of employees from the text file (2) Delete database - This will clear the ArrayList of all data (3) Print database - This will print the database (4) Sort database - This will sort the database by last name (You already implemented the comparable interface so this is very easy to do) (5) Delete record - This will allow the user to delete a record from the database (6) Add record - This will allow the user to add a record to the database (7) Save database - This will allow the user to write the contents of the ArrayList into a new file. - Question 2 Not yet answered Marked out of 40.00 Flag question Employee Processing Class: (40 points) This class will be a utility which will read in each line, break up the line, and create a new Employee Object. The Employee Processing Class will the following methods: static ArrayList readRecords(String fileName) throws fileNotFoundException - This method will read the file, convert each line into an employee record, then insert it into an arrayList. Finally, it will return the arrayList when all of the records are done processing. (10 points) static Employee getEmployeeRecord(ArrayList