// Tyler Rigsby, CSE 142 // Models secretaries who know how to take dictation. public class Secretary extends Employee { public Secretary(int years) { super(years); } public void takeDictation(String text) { System.out.println("Taking dictation! " + text); } }