// CSE 142 Lecture 19 // Encapsulation, Inheritance // A class to represent a Lawyer (3-page manual). public class Marketer extends Employee { public void advertise() { System.out.println("Act now while supplies last!"); } public double getSalary() { return 50000; } }