// CSE 142, Autumn 2010, Jessica Miller // A class to represent secretaries. // Secretaries are specialized employees because they can take dictation. public class Secretary extends Employee { public void takeDictation(String text) { System.out.println("Taking dictation: " + text); } }