// A class to represent Lawyers public class Lawyer extends Employee { // Sue someone public void sue() { System.out.println("YOU'VE BEEN SUED!"); } // Returns "pink" as the color of the vacation form used by the Lawyer public String getVacationForm() { return "pink"; } // Returns three weeks of paid vacation (an additional week from base vacation time) public int getVacationDays() { return super.getVacationDays() + 5; } }