Question: Define a class named Employee whose objects are records for employees. Derive this class from the class Person class included in this folder. An employee
Define a class named Employee whose objects are records for employees. Derive this class from the class Person class included in this folder. An employee has an aggregated address class. Address contains Street Name, city, zip code (numeric), State, and isCurrentAddress (Boolean) fields. An employee record inherits an employees name from the class Person. In addition, an employee record contains an annual salary represented as a single value of type double, a hire date that gives the year hired as a single value of type int, and an identification number that is a value of type String. Give your class a reasonable complement of constructors, accessor methods, and mutator methods, as well as an equals method. There are Fulltime and Part time employees, you will be applying the concepts of polymorphism to create these two types of employees. Check if the employee is full time or part time. Write a program to fully test your class definition and all your methods.
Use Java Block (Multiline) comment syntax to provide your information, including the authors name, course ID, section, programming #5, the main purpose of this programming assignment, what the program is going to do or what problem you are going to solve, and credit for any borrowed source code. Include this information as a header of your main class. Also, for each line of code provide detail comments about what that particular line of code is going to do. eg.
//declares an int variable called age and assigned a value of 35 to it
int age = 35;
Include the comments in your .java source code
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
