|
@@ -6,6 +6,7 @@ import java.awt.datatransfer.UnsupportedFlavorException;
|
|
import java.io.File;
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.io.IOException;
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
|
|
+import java.util.Hashtable;
|
|
import java.util.zip.ZipException;
|
|
import java.util.zip.ZipException;
|
|
|
|
|
|
import org.apache.commons.compress.archivers.ArchiveException;
|
|
import org.apache.commons.compress.archivers.ArchiveException;
|
|
@@ -24,6 +25,7 @@ import interfaces.CategoryListener;
|
|
import ui.model.Model;
|
|
import ui.model.Model;
|
|
import ui.view.FlexiblePane;
|
|
import ui.view.FlexiblePane;
|
|
import ui.view.MyCanvas;
|
|
import ui.view.MyCanvas;
|
|
|
|
+import ui.view.StatisticGraphPanel;
|
|
|
|
|
|
/**
|
|
/**
|
|
* The Class represents the controller in the model, controller view Pattern.
|
|
* The Class represents the controller in the model, controller view Pattern.
|
|
@@ -929,5 +931,13 @@ public class Control {
|
|
public void setFlexiblePane(FlexiblePane fp){
|
|
public void setFlexiblePane(FlexiblePane fp){
|
|
simulationManager.setFlexiblePane(fp);
|
|
simulationManager.setFlexiblePane(fp);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public void setGraphTable(Hashtable<String, StatisticGraphPanel> gT){
|
|
|
|
+ model.setGraphTable(gT);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Hashtable<String, StatisticGraphPanel> getGraphTable(){
|
|
|
|
+ return model.getGraphTable();
|
|
|
|
+ }
|
|
|
|
|
|
}
|
|
}
|