// CSE 142 Lecture 19 // Encapsulation, Inheritance // A class to represent a Secretary (1-page manual). public class Secretary extends Employee { public void takeDictation(String text) { System.out.println("Taking dictation of text: " + text); } }