// CSE 142, Autumn 2009, Marty Stepp // A class to represent lawyers. public class Lawyer extends Employee { public int getVacationDays() { return 15; // 3 weeks vacation } public String getVacationForm() { return "pink"; } public void sue() { System.out.println("I'll see you in court!"); } }