// CSE 142 Lecture 20 // Interacting with Super Class // A class to represent a Secretary (1-page manual). public class Secretary extends Employee { public Secretary(int years) { super(years); } public void takeDictation(String text) { System.out.println("Taking dictation of text: " + text); } public int getSeniorityDays() { return 0; } }