// Tyler Rigsby, CSE 142 // A class to represent employees in general (20-page manual). // Employees work 40 hours, make $40,000, get 10 vacation days, and use the yellow // form to apply for leave public class Employee { private int years; public Employee(int years) { this.years = years; } public int getHours() { return 40; } public int getSalary() { return 40000; } public int getYears() { return years; } public int getVacationDays() { return 10 + 2 * years; } public String getFormColor() { return "yellow"; } }