// A class to represent secretary employees. public class Secretary extends Employee { // I inherit a copy of the getHours, getSalary, getVacationDays, // and getVacationForm methods from Employee class. // The secretary's unique behavior. public void takeDictation(String text) { System.out.println("Dictating text: " + text); } }