//** //** CS201 Lab 10 //** public class InheritanceTest { public static void main(String[] args) { Employee emp1 = new Employee("Jane Jones", "123 Main Street", "5/15/75", "Sales", "Supervisor", 55000); System.out.println("Name: "+ emp1.getName()); System.out.println("Address: " + emp1.getAddress()); System.out.println("Salary: " + emp1.getSalary()); Employee emp2 = new Employee("John Doe", "88 Oak Street", "3/25/87", "Maintenance", "Supervisor", 31500); System.out.println(emp2); /*** Uncomment this section to test your Student class Student student1 = new Student("Bill Smith", "455 4th Avenue", "12/2/85", "CIS", 55, 2.75); System.out.println("\n\n"); System.out.println("Name: " + student1.getName()); System.out.println("Date of Birth: " + student1.getDateOfBirth()); System.out.println("GPA: " + student1.getGPA()); Student student2 = new Student("Sally Black", "110 Dell Avenue", "8/12/83", "Math", 15, 3.75); System.out.println(student2); ***/ } }