Question: Implement the corresponding class; include only the attributes and methods shown and ensure the methods do only what is specified while ensuring the code relies
Implement the corresponding class; include only the attributes and methods shown and ensure the methods do only what is specified while ensuring the code relies on ListADT; the code must implement a ListADT object and an element object.
hoursWorked : int
payRate : double
+ AddHours(hoursToAdd : int) : void
Adds the given hours to add to the hoursWorked
+ SetPayRate(newPayRate : double) : void
Changes the payrate to the new pay rate.
+ GetHoursWorked(void) : int {hoursWorked}
Gives back the hoursWorked
+ GetPayRate(void) : double {payRate}
Gives back the payRate
+ GetGrossPay(void) : double {grossPay}
Calculates and returns the gross pay
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
