public class Hourly extends Worker { public Hourly (String s, double r) { super (s, r); } public double computePay(int hours) { if (hours <= 40) return hours * this.getRate(); else return (hours - 40) * this.getRate() * 1.5 + 40 * this.getRate(); } }