]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.simulation/src/org/simantics/simulation/experiment/IHistoryExperiment.java
Added Set End Time command and handler as an alternate stepping mode
[simantics/platform.git] / bundles / org.simantics.simulation / src / org / simantics / simulation / experiment / IHistoryExperiment.java
1 package org.simantics.simulation.experiment;
2
3 import org.simantics.history.Collector;
4 import org.simantics.history.HistoryException;
5
6 import org.simantics.history.HistoryManager;
7
8 public interface IHistoryExperiment {
9
10         Collector getCollector();
11         HistoryManager getHistoryManager();
12         void flushHistory() throws HistoryException;
13         
14 }