]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.structural.synchronization.client/src/org/simantics/structural/synchronization/base/StateUndoContextBase.java
Added editable unit for derived properties
[simantics/platform.git] / bundles / org.simantics.structural.synchronization.client / src / org / simantics / structural / synchronization / base / StateUndoContextBase.java
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 }