-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmployee.java
More file actions
77 lines (59 loc) · 1.81 KB
/
Employee.java
File metadata and controls
77 lines (59 loc) · 1.81 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Class = models an object
// object => instance of a class
// Employee => super class
public class Employee {///////////////////////////////////////////////////////////////////////////
private int id;
int age;
String name;
public static void main(String[] args) {
Employee new_employee = new Employee(23456, "Wamae", 50);
new_employee.work();
Employee second_employee = new Employee(409869, "Brian", 40);
second_employee.work();
Manager new_manager = new Manager(12345, "John Doe", 32, "IT");
new_manager.work();
new_manager.attendBOM();
}
// constructor method
public Employee(int id_no, String name, int age) {
this.id = id_no;
this.age = age;
this.name = name;
}
public int getId() {
return this.id;
}
public void setId(int id_no) {
this.id = id_no;
}
public void getDetails() {
System.out.println(name);
}
public void work() {
System.out.println(this.name + " working...");
}
public void checkSalary() {
System.out.println("Checking salary disbursment...");
}
public void quitJob() {
System.out.println("Quiting the job...");
}
}
// Manager => sub class/child
class Manager extends Employee {
String level = "senior";
String department;
public Manager(int id, String name, int age, String depart) {
super(id, name, age);
this.department = depart;
}
public void conductMeeting() {
System.out.println("Calling a meeting with all the employees...");
}
public void attendBOM() {
System.out.println("Attending BOM meeting...");
}
public void askForReports() {
System.out.println("Asking Junior employees to handle over their reports...");
}
}