// CSE 142 Lecture 19 // Encapsulation, Inheritance // A class to represent a Lawyer (2-page manual). public class Lawyer extends Employee { public void sue() { System.out.println("See you in court!"); } // Override the vacation form color public String getVacationForm() { return "pink"; } // Override the vacation days public int getVacationDays() { return 15; } }