1 | public class Employee extends Person {↵ | | 1 | public class Employee extends Person {↵
|
2 | private String title;↵ | | 2 | private String title;↵
|
3 | private BigDecimal salary;↵ | | 3 | private BigDecimal salary;↵
|
4 | private Employee manager;↵ | | 4 | private Employee manager;↵
|
5 | /**↵ | | 5 | /**↵
|
6 | * @return Returns the title.↵ | | 6 | * @return Returns the title.↵
|
7 | */↵ | | 7 | */↵
|
8 | public String getTitle() {↵ | | 8 | public String getTitle() {↵
|
9 | return title;↵ | | 9 | return title;↵
|
10 | }↵ | | 10 | }↵
|
11 | /**↵ | | 11 | /**↵
|
12 | * @param title The title to set.↵ | | 12 | * @param title The title to set.↵
|
13 | */↵ | | 13 | */↵
|
14 | public void setTitle(String title) {↵ | | 14 | public void setTitle(String title) {↵
|
15 | this.title = title;↵ | | 15 | this.title = title;↵
|
16 | }↵ | | 16 | }↵
|
17 | /**↵ | | 17 | /**↵
|
18 | * @return Returns the manager.↵ | | 18 | * @return Returns the manager.↵
|
19 | */↵ | | 19 | */↵
|
20 | public Employee getManager() {↵ | | 20 | public Employee getManager() {↵
|
21 | return manager;↵ | | 21 | return manager;↵
|
22 | }↵ | | 22 | }↵
|
23 | /**↵ | | 23 | /**↵
|
24 | * @param manager The manager to set.↵ | | 24 | * @param manager The manager to set.↵
|
25 | */↵ | | 25 | */↵
|
26 | public void setManager(Employee manager) {↵ | | 26 | public void setManager(Employee manager) {↵
|
27 | this.manager = manager;↵ | | 27 | this.manager = manager;↵
|
28 | }↵ | | 28 | }↵
|
29 | /**↵ | | 29 | /**↵
|
30 | * @return Returns the salary.↵ | | 30 | * @return Returns the salary.↵
|
31 | */↵ | | 31 | */↵
|
32 | public BigDecimal getSalary() {↵ | | 32 | public BigDecimal getSalary() {↵
|
33 | return salary;↵ | | 33 | return salary;↵
|
34 | }↵ | | 34 | }↵
|
35 | /**↵ | | 35 | /**↵
|
36 | * @param salary The salary to set.↵ | | 36 | * @param salary The salary to set.↵
|
37 | */↵ | | 37 | */↵
|
38 | public void setSalary(BigDecimal salary) {↵ | | 38 | public void setSalary(BigDecimal salary) {↵
|
39 | this.salary = salary;↵ | | 39 | this.salary = salary;↵
|
40 | | | 40 |
|