// A class to represent employees in general (20-page manual). public class Employee { // Works 40 hours / week public int getHours() { return 40; } // $100,000.00 / year public double getSalary() { return 100000.0; } // Returns 2 weeks' paid vacation public int getVacationDays() { return 10; } // Returns the "yellow" form for the Vacation form public String getVacationForm() { return "yellow"; } }