// CSE 142 Lecture 20 // Interacting with Super Class // 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 super.getSalary() + 5000; } }