public class FullTime extends Employee { private double baseSalary; private double allowance; // implement normal constuctor here public FullTime(String nm, int id, double baseSal, double allwnce ) { super( nm, id ); baseSalary = baseSal; allowance = allwnce; } // implement calSalary() here public double calSalary() { return baseSalary + allowance; } // implement calTax() here public double calTax() { if( calSalary() > 1000 ) return calSalary()*0.02; return 0; } public double getAll() { return allowance; } // implement toString() here public String toString() { return super.toString() + " Base salary: RM" + baseSalary + " Allowance: RM" + allowance; } }