public class Employee { // the following members are common to Employee, // Manager, and CSR String name; String address; float salary; public float receivesPay() { return salary; } public int works(int workDone) { return workDone; } }