-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmployee.java
More file actions
46 lines (45 loc) · 1.18 KB
/
Employee.java
File metadata and controls
46 lines (45 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* An employee class that represents an employee with a given first name, last name, and id number.
*/
public class Employee implements User
{
/**
* Constructs a new Employee object with a given first name, last name, and id number.
* @param fname = the first name of the employee
* @param lname = the last name of the employee
* @param idNum = the id number of the employee
*/
public Employee(String fname, String lname, String idNum)
{
fName = fname;
lName = lname;
id = idNum;
}
/**
* Returns the first name of the employee
* @return fName = the first name of the employee
*/
public String getFirstName()
{
return fName;
}
/**
* Returns the last name of the employee
* @return lName = the last name of the employee
*/
public String getLastName()
{
return lName;
}
/**
* Returns the id number of the employee
* @return id = the id number of the employee
*/
public String getID()
{
return id;
}
private String id;
private String fName;
private String lName;
}