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