]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.structural.synchronization/src/org/simantics/structural/synchronization/base/ModuleUpdaterFactoryBase.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 / ModuleUpdaterFactoryBase.java
diff --git a/bundles/org.simantics.structural.synchronization/src/org/simantics/structural/synchronization/base/ModuleUpdaterFactoryBase.java b/bundles/org.simantics.structural.synchronization/src/org/simantics/structural/synchronization/base/ModuleUpdaterFactoryBase.java
new file mode 100644 (file)
index 0000000..e384e1a
--- /dev/null
@@ -0,0 +1,9 @@
+package org.simantics.structural.synchronization.base;
+
+import org.simantics.structural.synchronization.utils.ComponentBase;
+
+public interface ModuleUpdaterFactoryBase<T extends ComponentBase<T>> {
+
+    public ModuleUpdaterBase<T> createUpdater(String id) throws Exception;
+
+}