]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - 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
diff --git a/bundles/org.simantics.structural.synchronization/src/org/simantics/structural/synchronization/base/CommandBuilder.java b/bundles/org.simantics.structural.synchronization/src/org/simantics/structural/synchronization/base/CommandBuilder.java
new file mode 100644 (file)
index 0000000..57b8d9a
--- /dev/null
@@ -0,0 +1,10 @@
+package org.simantics.structural.synchronization.base;
+
+import org.simantics.structural.synchronization.utils.Solver;
+
+public interface CommandBuilder {
+
+       void apply(Solver solver);
+       <T> T getConcrete();
+       
+}