Question: Employee Class Write a class named Employee that has the following fields: name. The name field is a String object that holds the employees name.
Employee Class
Write a class named Employee that has the following fields:
-
name. The name field is a String object that holds the employees name.
-
idNumber. The idNumber is an int variable that holds the employees ID number.
-
department. The department field is a String object that holds the name of the department where the employee works.
-
position. The position field is a String object that holds the employees job title.
Write appropriate mutator methods that store values in these fields, and accessor methods that return the values in these fields. Once you have written the class, write a separate program that creates three Employee objects to hold the following data:
| Name | ID Number | Department | Position |
|---|---|---|---|
| Susan Meyers | 47899 | Accounting | Vice President |
| Mark Jones | 39119 | IT | Programmer |
| Joy Rogers | 81774 | Manufacturing | Engineer |
The program should store this data in the three objects, then display the data for each employee on the screen.
Your employee class should only contain
Private variables
private String name; // Employee's name
private int idNumber; // ID number
private String department; // Employee's department
private String position; // Job title
//you are not passing any arguments, so no constructor is required.
setters and getters methods must be.
setName //case matter here the N must be uppercase
setIdNumber
setDepartment
setPosition
getName
getIdNumber
getDepartment
getPosition
The above method names must match the supplied EmployeeDemo method calls.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
