// Secretaries are employees who can take dictation public class Secretary extends Employee { public void takeDictation(String text) { System.out.println("Taking dictation of text: " + text); } }