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.
Plz help
Language: java
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started