// CSE 142 Labs // A class to represent secretaries. public class Secretary extends Employee { public void takeDictation(String text) { System.out.println("Taking dictation of text: " + text); } public void work() { takeDictation("blah blah blah"); } }