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