]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.structural.synchronization/src/org/simantics/structural/synchronization/base/CommandBuilder.java
Separate DB and non-DB code to different structural sync bundles
[simantics/platform.git] / bundles / org.simantics.structural.synchronization / src / org / simantics / structural / synchronization / base / CommandBuilder.java
1 package org.simantics.structural.synchronization.base;
2
3 import org.simantics.structural.synchronization.utils.Solver;
4
5 public interface CommandBuilder {
6
7         void apply(Solver solver);
8         <T> T getConcrete();
9         
10 }