// CSE 142 Lecture 19 // Encapsulation, Inheritance // A class to represent a Lawyer (1-page manual). public class LegalSecretary extends Secretary { public void fileLegalBriefs() { System.out.println("I could file all day!"); } public double getSalary() { return 45000; } }