]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.structural.synchronization/src/org/simantics/structural/synchronization/utils/StateUndoContextBase.java
Refactoring of simulator toolkit
[simantics/platform.git] / bundles / org.simantics.structural.synchronization / src / org / simantics / structural / synchronization / utils / StateUndoContextBase.java
1 package org.simantics.structural.synchronization.utils;
2
3 /**
4  * Stores state information of removed modules.
5  * 
6  * @author Hannu Niemistö
7  */
8 public interface StateUndoContextBase {
9         
10     public void saveState(Solver solver, int componentId, String uid);
11     public boolean loadState(Solver solver, int componentId, String uid);
12         
13 }