- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathButtonContainerPanel.java
More file actions
Latest commit
47 lines (33 loc) · 1.09 KB
/
Copy pathButtonContainerPanel.java
File metadata and controls
47 lines (33 loc) · 1.09 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
importjava.awt.BorderLayout;
importjava.awt.Dimension;
importjavax.swing.JPanel;
publicclassButtonContainerPanel {
privatestaticButtonContainerPanelpanel;
privateJPanelcontainerPanel;
//singleton so only one container can exist
publicstaticButtonContainerPanelpanel() {
if (panel == null) {
panel = newButtonContainerPanel();
}
returnpanel;
}
publicButtonContainerPanel() {
}
//initialize
publicvoidinitialize() {
this.containerPanel = newJPanel();
formatPanel();
}
//format the panel
publicvoidformatPanel() {
containerPanel.setLayout(newBorderLayout());
containerPanel.setPreferredSize(newDimension(300, 400));
containerPanel.add(UserButtonsPanel.panel().render(), BorderLayout.NORTH);
containerPanel.add(AnalysisButtonPanel.panel().render(), BorderLayout.SOUTH);
}
//render the panel
publicJPanelrender() {
initialize();
returnthis.containerPanel;
}
}