public class Employee { public int getHours() { return 40; } public double getHourlyRate() { return 21.00; } public int getVacationDays() { return 10; } }