// CSE 142 Lecture 20 // Interacting with Super Class // A class to represent a Lawyer (3-page manual). public class Marketer extends Employee { public Marketer(int years) { super(years); } public void advertise() { System.out.println("Act now while supplies last!"); } public double getSalary() { return super.getSalary() + 10000; } }