-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBTOProperty.java
More file actions
224 lines (177 loc) · 6.66 KB
/
Copy pathBTOProperty.java
File metadata and controls
224 lines (177 loc) · 6.66 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
package assignment2002;
import java.util.ArrayList;
import java.util.stream.Collectors;
import assignment2002.user.Applicant;
import assignment2002.user.Manager;
import assignment2002.user.Officer;
import assignment2002.utils.BTOFileService;
import assignment2002.utils.FileManifest;
public class BTOProperty {
private String projectName; // Unique identifier
private String neighbourhood;
private String twoRoom;
private int twoRoomAmt;
private int twoRoomPrice; //Float Double?
private String threeRoom;
private int threeRoomAmt;
private int threeRoomPrice;
private String openDate;
private String closeDate; //Maybe import module for dates?
private ArrayList<Manager> managerIC;
private int officerSlot;
private ArrayList<Officer> appliedOfficers;
private ArrayList<Officer> rejectedOfficers;
private ArrayList<Officer> officers; // Approved officers
private boolean visible; // i shall set the default to be true
private ArrayList<Applicant> twoRoomApplicants = new ArrayList<>();
private ArrayList<Applicant> threeRoomApplicants = new ArrayList<>();
public BTOProperty(String projName, String neighbourhood, String twoRoom,
int twoRoomAmt, int twoRoomPrice, String threeRoom, int threeRoomAmt,
int threeRoomPrice, String openDate, String closeDate, ArrayList<Manager> managerICRef, int officerSlot,
ArrayList<Officer> officerList, ArrayList<Officer> appliedOfficersList,
ArrayList<Officer> rejectedOfficersList, String visible){
this.projectName = projName;
this.neighbourhood = neighbourhood;
this.twoRoom = twoRoom;
this.twoRoomAmt = twoRoomAmt;
this.twoRoomPrice = twoRoomPrice;
this.threeRoom = threeRoom;
this.threeRoomAmt = threeRoomAmt;
this.threeRoomPrice = threeRoomPrice;
this.openDate = openDate;
this.closeDate = closeDate;
managerIC = managerICRef;
this.officerSlot = officerSlot;
officers = officerList; //Holds Object references to the officers
this.appliedOfficers = appliedOfficersList;
this.rejectedOfficers = rejectedOfficersList;
this.visible = visible.equalsIgnoreCase("true") ? true : false;
}
public void allInfo(){ //Troubleshooting
System.out.printf("Project Name: %s Neighbourhood: %s\n"
+ "twoRoom: %s twoRoomAmt: %d twoRoomPrice: %d\n"
+ "threeRoom: %s threeRoomAmt: %d threeRoomPrice: %d\n"
+ "openDate: %s closeDate: %s Officer Slot: %d\n"
,getProjectName(),getNeighbourhood(),getTwoRoom(),getTwoRoomAmt(),getTwoRoomPrice(),getThreeRoom(),getThreeRoomAmt(),getThreeRoomPrice(),getOpenDate(),getCloseDate(),getOfficerSlot());
System.out.println("Managers Involved:");
for(Manager m: managerIC){
System.out.println(m.getName());
}
System.out.println("Officers Involved:");
for(Officer o : officers){
System.out.println(o.getName());
}
}
public boolean isVisible() {
return visible;
}
public void setVisible(boolean visible) { // maybe manager can use to make certain project invisible
this.visible = visible;
}
public String getProjectName() {
return projectName;
}
public String getNeighbourhood() {
return neighbourhood;
}
public String getTwoRoom() {
return twoRoom;
}
public int getTwoRoomAmt() {
return twoRoomAmt;
}
public int getTwoRoomPrice() {
return twoRoomPrice;
}
public String getThreeRoom() {
return threeRoom;
}
public int getThreeRoomAmt() {
return threeRoomAmt;
}
public int getThreeRoomPrice() {
return threeRoomPrice;
}
public String getOpenDate() {
return openDate;
}
public String getCloseDate() {
return closeDate;
}
public ArrayList<Manager> getManagerIC() {
return managerIC;
}
public int getOfficerSlot() {
return officerSlot;
}
public ArrayList<Officer> getAppliedOfficers() {
return appliedOfficers;
}
public ArrayList<Officer> getRejectedOfficers() {
return rejectedOfficers;
}
public void addAppliedOfficer(Officer o) {
appliedOfficers.add(o);
BTOFileService.editBTOByColumn(projectName, FileManifest.PROJECT_COLUMNS.PENDING_OFFICERS, appliedOfficers.stream().map(Officer::getName).collect(Collectors.joining(",")),false);
}
public void addRejectedOfficer(Officer o) {
rejectedOfficers.add(o);
BTOFileService.editBTOByColumn(projectName, FileManifest.PROJECT_COLUMNS.REJECTED_OFFICERS, appliedOfficers.stream().map(Officer::getName).collect(Collectors.joining(",")),false);
}
public String getOfficersToString(ArrayList<Officer> oList){
String collatedOfficers = "";
for(Officer offList: oList){
collatedOfficers += offList.getName() + ",";
}
if(collatedOfficers.isEmpty()){
collatedOfficers = "None";
}
if (!collatedOfficers.isEmpty() && !collatedOfficers.equals("None")) {
collatedOfficers = collatedOfficers.substring(0, collatedOfficers.length() - 1);
}
return collatedOfficers;
}
public ArrayList<Officer> getOfficers() {
return officers;
}
public ArrayList<Applicant> getTwoRoomApplicants() {
return twoRoomApplicants;
}
public ArrayList<Applicant> getThreeRoomApplicants() {
return threeRoomApplicants;
}
public void addApplicant(Applicant applicant, String flatType) {
if (flatType.equalsIgnoreCase("2-Room")) {
twoRoomApplicants.add(applicant);
} else if (flatType.equalsIgnoreCase("3-Room")) {
threeRoomApplicants.add(applicant);
}
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
public void setNeighbourhood(String neighbourhood) {
this.neighbourhood = neighbourhood;
}
public void setTwoRoomAmt(int twoRoomAmt) {
this.twoRoomAmt = twoRoomAmt;
}
public void setTwoRoomPrice(int twoRoomPrice) {
this.twoRoomPrice = twoRoomPrice;
}
public void setThreeRoomAmt(int threeRoomAmt) {
this.threeRoomAmt = threeRoomAmt;
}
public void setThreeRoomPrice(int threeRoomPrice) {
this.threeRoomPrice = threeRoomPrice;
}
public void setOpenDate(String openDate) {
this.openDate = openDate;
}
public void setCloseDate(String closeDate) {
this.closeDate = closeDate;
}
public void setOfficerSlot(int officerSlot) {
this.officerSlot = officerSlot;
}
}