|
@@ -110,6 +110,10 @@ public class GUI<E> implements CategoryListener {
|
|
private JMenuItem editItem = new JMenuItem("Edit Object");
|
|
private JMenuItem editItem = new JMenuItem("Edit Object");
|
|
private String catOfObjToBeEdited;
|
|
private String catOfObjToBeEdited;
|
|
private final JScrollPane statTab = new JScrollPane();
|
|
private final JScrollPane statTab = new JScrollPane();
|
|
|
|
+
|
|
|
|
+ private StatisticPane statPane = new StatisticPane();
|
|
|
|
+ private JScrollPane statScrollPane = new JScrollPane(statPane);
|
|
|
|
+
|
|
|
|
|
|
private final JLabel maxGraph = new JLabel("100%");
|
|
private final JLabel maxGraph = new JLabel("100%");
|
|
private final JLabel medGraph = new JLabel("50%");
|
|
private final JLabel medGraph = new JLabel("50%");
|
|
@@ -1577,7 +1581,7 @@ public class GUI<E> implements CategoryListener {
|
|
splitPane.setLeftComponent(scrollPane1);
|
|
splitPane.setLeftComponent(scrollPane1);
|
|
splitPaneCanvasConsole.setLeftComponent(panelTapped_SimMenu);
|
|
splitPaneCanvasConsole.setLeftComponent(panelTapped_SimMenu);
|
|
tabbedPane.addTab("View", canvasSP);
|
|
tabbedPane.addTab("View", canvasSP);
|
|
- tabbedPane.addTab("Statistics", null);
|
|
|
|
|
|
+ tabbedPane.addTab("Statistics", statScrollPane);
|
|
// splitPaneCanvasConsole.setLeftComponent(canvasSP);
|
|
// splitPaneCanvasConsole.setLeftComponent(canvasSP);
|
|
splitPaneCanvasConsole.setRightComponent(console);
|
|
splitPaneCanvasConsole.setRightComponent(console);
|
|
splitPane1.setLeftComponent(splitPaneCanvasConsole);
|
|
splitPane1.setLeftComponent(splitPaneCanvasConsole);
|