// CSE 142, Autumn 2010, Jessica Miller // A class to represent employees in general (20-page, general manual). public class Employee { public int getHours() { return 40; // works 40 hours / week } public double getSalary() { return 50000.0; // $50,000.00 / year (after raise) } public int getVacationDays() { return 10; // 2 weeks' paid vacation } public String getVacationForm() { return "yellow"; // use the yellow form } }