-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNode.java
120 lines (91 loc) · 2.4 KB
/
Node.java
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
public class Node {
private int pr, numCPUBurst, numIOBurst, cpuIndex, ioIndex;
private int[] cpuBurst, ioBurst;
private long timeCreated, timeEnteredRQ, timeInRQ, turnAroundTime, waitingTime, processTime;
private Node prev, next;
public Node() {
prev = null;
next = null;
}
public int getPr() {
return pr;
}
public void setPr(final int pr) {
this.pr = pr;
}
public int getNumCPUBurst() {
return numCPUBurst;
}
public void setNumCPUBurst(final int numCPUBurst) {
this.numCPUBurst = numCPUBurst;
}
public int getNumIOBurst() {
return numIOBurst;
}
public void setNumIOBurst(final int numIOBurst) {
this.numIOBurst = numIOBurst;
}
public int getCpuIndex() {
return cpuIndex;
}
public void setCpuIndex(final int cpuIndex) {
this.cpuIndex = cpuIndex;
}
public int getIoIndex() {
return ioIndex;
}
public void setIoIndex(final int ioIndex) {
this.ioIndex = ioIndex;
}
public int[] getCpuBurst() {
return cpuBurst;
}
public void setCpuBurst(final int[] cpuBurst) {
this.cpuBurst = cpuBurst;
}
public int[] getIoBurst() {
return ioBurst;
}
public void setIoBurst(final int[] ioBurst) {
this.ioBurst = ioBurst;
}
public long getTimeCreated() {
return timeCreated;
}
public void setTimeCreated(final long timeCreated) {
this.timeCreated = timeCreated;
}
public long getTimeEnteredRQ() {
return timeEnteredRQ;
}
public void setTimeEnteredRQ(final long timeEnteredRQ) {
this.timeEnteredRQ = timeEnteredRQ;
}
public long getTimeInRQ() {
return timeInRQ;
}
public void setTimeInRQ(final long timeInRQ) {
this.timeInRQ = timeInRQ;
}
public void setTurnAroundTime(final long turnAroundTime) {
this.turnAroundTime = turnAroundTime;
}
public long getWaitingTime() {
return waitingTime;
}
public void setWaitingTime(final long waitingTime) {
this.waitingTime = waitingTime;
}
public Node getPrev() {
return prev;
}
public void setPrev(final Node prev) {
this.prev = prev;
}
public Node getNext() {
return next;
}
public void setNext(final Node next) {
this.next = next;
}
}