/** Name: Cameron Lewis Student ID: 16254966 **/ // PayrollCommand.java // // ICS H22 Fall 2005 // Lab 2: The Price You Pay // // This enumeration is provided as-is for use in your program. You are // required to use it as appropriate, but are not allowed to modify it. // The PayrollCommand enumeration is a set of constants that correspond // to the commands supported by this program. If you're not familiar with // the concept of enumerations, they are described in the project write-up. public enum PayrollCommand { ADD_EMPLOYEE, REMOVE_EMPLOYEE, SHOW_EMPLOYEES, DO_WEEKLY_PAYROLL, QUIT }