-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathControllerMap.java
More file actions
215 lines (179 loc) · 6.4 KB
/
ControllerMap.java
File metadata and controls
215 lines (179 loc) · 6.4 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
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.layout.Pane;
import javafx.scene.control.CheckMenuItem;
import javafx.scene.control.Button;
import java.net.URL;
import java.util.ResourceBundle;
import java.io.IOException;
import javafx.scene.control.DatePicker;
import java.time.LocalDate;
import java.util.NoSuchElementException;
import javafx.scene.control.Label;
import java.util.Observable;
import java.util.Observer;
import javafx.fxml.FXMLLoader;
import javafx.scene.Node;
import javafx.scene.layout.AnchorPane; // Assuming rightPane is of type AnchorPane
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.time.format.DateTimeFormatter;
import javafx.scene.control.Alert;
import javax.swing.*;
import javax.swing.table.DefaultTableModel;
import java.awt.*;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javax.swing.table.TableRowSorter;
/**
* Write a description of class ControllerMap here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class ControllerMap
{
// Singleton pattern
private static ControllerMap instance;
// Data
private static Object[][] data;
//StatisticsBorough otherObject = new StatisticsBorough();
// Declare other controllers
StatisticsBorough statisticsBorough;
// Declare the models (Source of data)
ModelMain modelMain;
// Declare the statistics class generator
Statistics statistics;
//String[] mapColumnNames = StatisticsBorough columnNames;
String[] columnNames = {"Date", "retail Recreation GMR","grocery and pharmacy GMR","park GMR","Transit Stations GMR", "Work Places GMR","Residential GMR","new COVID cases", "total COVID cases ","new covid death"};
/**
* Constructor for objects of class ControllerMap
*/
public ControllerMap() {}
public static ControllerMap getInstance() {
if (instance == null) {
instance = new ControllerMap();
}
return instance;
}
@FXML
public void handleENFIButton(ActionEvent event){
statisticsBorough = statisticsBorough.getInstance();
String borough = "Enfield";
data = statisticsBorough.boroughData(borough);
showTable();
}
@FXML
public void handleBARNButton(ActionEvent event){
statisticsBorough = statisticsBorough.getInstance();
String borough = "Barnet";
data = statisticsBorough.boroughData(borough);
showTable();
}
@FXML
public void handleHRGYButton(ActionEvent event){
statisticsBorough = statisticsBorough.getInstance();
String borough = "Haringey";
data = statisticsBorough.boroughData(borough);
showTable();
}
@FXML
public void handleWALTButton(ActionEvent event){
statisticsBorough = statisticsBorough.getInstance();
String borough = "Waltham Forest";
data = statisticsBorough.boroughData(borough);
showTable();
}
@FXML
public void handleHRRWButton(ActionEvent event){
statisticsBorough = statisticsBorough.getInstance();
String borough = "Harrow";
data = statisticsBorough.boroughData(borough);
showTable();
}
@FXML
public void handleBRENButton(ActionEvent event){
statisticsBorough = statisticsBorough.getInstance();
String borough = "Brent";
data = statisticsBorough.boroughData(borough);
showTable();
}
@FXML
public void handleCAMDButton(ActionEvent event){
statisticsBorough = statisticsBorough.getInstance();
String borough = "Camden";
data = statisticsBorough.boroughData(borough);
showTable();
}
@FXML
public void handleISLIButton(ActionEvent event){
statisticsBorough = statisticsBorough.getInstance();
String borough = "Islington";
data = statisticsBorough.boroughData(borough);
showTable();
}
@FXML
public void handleHACKButton(ActionEvent event){
statisticsBorough = statisticsBorough.getInstance();
String borough = "Hackney";
data = statisticsBorough.boroughData(borough);
showTable();
}
@FXML
public void handleREDBButton(ActionEvent event){
statisticsBorough = statisticsBorough.getInstance();
String borough = "Redbridge";
data = statisticsBorough.boroughData(borough);
showTable();
}
@FXML
public void handleHAVEButton(ActionEvent event){
statisticsBorough = statisticsBorough.getInstance();
String borough = "Havering";
data = statisticsBorough.boroughData(borough);
showTable();
}
public void showTable(){
DefaultTableModel model = new DefaultTableModel(data, columnNames){
@Override
public Class getColumnClass(int column) {
switch (column) {
case 0:
return String.class;
case 1:
return Integer.class;
case 2:
return Integer.class;
case 3:
return Integer.class;
case 4:
return Integer.class;
case 5:
return Integer.class;
case 6:
return Integer.class;
case 7:
return Integer.class;
case 8:
return Integer.class;
case 9:
return Integer.class;
default:
return String.class;
}
}};
JTable table = new JTable(model);
JScrollPane scrollPane = new JScrollPane(table);
table.setPreferredScrollableViewportSize(new Dimension(400, 200));
TableRowSorter<DefaultTableModel> sorter = new TableRowSorter<>(model);
table.setRowSorter(sorter);
JFrame frame = new JFrame("JTable Example");
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.add(scrollPane, BorderLayout.CENTER);
frame.pack();
frame.setVisible(true);
}
}