@Override public double getSalary() { // use super.getSalary() to reference parent behavior return super.getSalary() + bonus; }

package com.example.work.util;

public Manager(String name, int id, double baseSalary, double bonus) { super(name, id, baseSalary); // use of super to call parent constructor this.bonus = bonus; }

public class Formatter { public static String pretty(Employee e) { return e.getDetails(); } } File: com/example/work/Main.java

import com.example.work.employee.Employee;

@Override public String getDetails() { return String.format("Manager[id=%d,name=%s,salary=%.2f,bonus=%.2f]", id, name, getSalary(), bonus); } } File: com/example/work/util/Formatter.java

public String getDetails() { return String.format("Employee[id=%d,name=%s,salary=%.2f]", id, name, getSalary()); } } File: com/example/work/employee/Manager.java

public class Manager extends Employee { private double bonus;