/* CSE 142, Autumn 2007, Marty Stepp A class to represent lawyers. */ public class Lawyer extends Employee { public Lawyer(int initialYears) { super(initialYears); } public double getSalary() { return super.getSalary() + 5000.0 * getYears(); } public int getVacationDays() { return super.getVacationDays() + 5; // 3 weeks vacation } public String getVacationForm() { return "pink"; } public void sue() { System.out.println("I'll see you in court!"); } }