// CSE 142, Autumn 2009, Marty Stepp // A class to represent secretaries. public class Secretary extends Employee { public void takeDictation(String text) { System.out.println("Taking dictation of text: " + text); } }