|
@@ -3,6 +3,7 @@ package ui.model;
|
|
import java.awt.Color;
|
|
import java.awt.Color;
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.HashMap;
|
|
|
|
+import java.util.Hashtable;
|
|
import java.util.LinkedList;
|
|
import java.util.LinkedList;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
@@ -20,6 +21,7 @@ import interfaces.ObjectListener;
|
|
import ui.view.Console;
|
|
import ui.view.Console;
|
|
import ui.view.DefaulTable;
|
|
import ui.view.DefaulTable;
|
|
import ui.view.PropertyTable;
|
|
import ui.view.PropertyTable;
|
|
|
|
+import ui.view.StatisticGraphPanel;
|
|
|
|
|
|
/**
|
|
/**
|
|
* The Class Model is the class where everything is saved. All changes made to
|
|
* The Class Model is the class where everything is saved. All changes made to
|
|
@@ -111,6 +113,7 @@ public class Model {
|
|
private Object algorithm = null;
|
|
private Object algorithm = null;
|
|
private int selectedHolonBody;
|
|
private int selectedHolonBody;
|
|
|
|
|
|
|
|
+ private Hashtable<String, StatisticGraphPanel> statisticGraphTable = new Hashtable<String, StatisticGraphPanel>();
|
|
/**
|
|
/**
|
|
* Constructor for the model. It initializes the categories and
|
|
* Constructor for the model. It initializes the categories and
|
|
* objectsOnCanvas by default values. Listeners are also initialized by
|
|
* objectsOnCanvas by default values. Listeners are also initialized by
|
|
@@ -860,4 +863,18 @@ public class Model {
|
|
public void setCanvasImageHeight(int height) {
|
|
public void setCanvasImageHeight(int height) {
|
|
backgroundHeight = height;
|
|
backgroundHeight = height;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Set the graphtable for Statistic Graphs
|
|
|
|
+ */
|
|
|
|
+ public void setGraphTable(Hashtable<String, StatisticGraphPanel> gT){
|
|
|
|
+ statisticGraphTable = gT;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Returns the graphtable for Statistic Graphs
|
|
|
|
+ */
|
|
|
|
+ public Hashtable<String, StatisticGraphPanel> getGraphTable(){
|
|
|
|
+ return statisticGraphTable;
|
|
|
|
+ }
|
|
}
|
|
}
|