Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You are a programmer in the IT department of an important law firm. Your job is to create a program that will report gross salary

You are a programmer in the IT department of an important law firm. Your job is to create a program that will report gross salary amounts and other compensation.

There are three types of employees in your firm:

Programmers Lawyers Accountants

Your computer-based solution will use inheritance to reflect the general-to-specific nature of your employee hierarchy.

Common attributes for all employees are:

Name

Salary

Attributes for specific employee types are:

Lawyers: Stock options earned (type int)

Accountants Parking allowance amount (type double)

Programmers: Bus pass (type boolean)

The three specific classes of employees should extend the abstract Employee class (nobody is a generic employee) and implement their own reportSalary() method.

The pay schedule is: o Employees earn the base salary of $40K per year o Accountants earn the base employee salary per year o Programmers earn the base employee salary plus $20K per yearo Lawyers earn the base employee salary plus $30K per year

Requirements:

o Each subclass of Employee must implement its own reportSalary() method. The specific implementations of reportSalary() are limited to a printed line:

System.out.println(I am a lawyer. I get + getSalary() + , and I have + getOptions() + shares of stock.);

System.out.println(I am an accountant. I make + getSalary() + plus a parking allowance of + getParking());

System.out.println("I am a programmer. I make " + getSalary() + " and I" + ((getBusPass())?" get a bus pass.":" do not get a bus pass."));

o Salaries for specific types of employees are in addition to the base employee salary. Raising the base employee salary should automatically raise salaries for all types of employees (hmmm...).

o An object of the Employee class cannot be instantiated because it would be too general.

o Attribute(s) that belong to a super or sub class should be initialized in the corresponding class constructor.

Task 1: Setup a class hierarchy to accurately reflect the relationships in your law firm.

Task 2: Create a driver program that will create employee objects and report salaries for your companysemployee base:

Programmers: (your name goes here) - No bus pass

Will E. Makit - Bus pass

Lawyers: Ivana Killmen - 11 shares signing bonus

- Luke N. Dimm - 0 shares signing bonus

- Eileen Dover - 100 shares signing bonus

Accountants:

Bill Cheatem - Parking allowance $ 17.00

- Joe Kisonyou - Parking allowance $ 45.50

- Seymore Butts - Parking allowance $ 2.50

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Spatio Temporal Database Management International Workshop Stdbm 99 Edinburgh Scotland September 10 11 1999 Proceedings Lncs 1678

Authors: Michael H. Bohlen ,Christian S. Jensen ,Michel O. Scholl

1999th Edition

3540664017, 978-3540664017

More Books

Students also viewed these Databases questions

Question

1. Where does the optic nerve start and where does it end?

Answered: 1 week ago