// Allison Obourn, CSE 142 // Models marketers who get a higher salary than other // employees and can advertise. public class Marketer extends Employee { // creates a marketer with the given years of experience public Marketer(int years) { super(years); } // returns the marketers' salary, higher than other employees public double getSalary() { return 50000.0; } // advertises public void adertise() { System.out.println("advertising products"); } }