This assignment will allow you to use inheritance to reuse code, override behavior when required by sub-classes.
Create a collecon of classes that shows the use of inheritance concepts.
package inheritance;
public class Employee {
private String name;
private double salary;
public Employee(String name, double salary);
public String getName();
public double getSalary();
public void raiseSalary(double byPercent);
};
public class Manager extends Employee{
public void raiseSalary(double byPercent);
};