]> gerrit.simantics Code Review - simantics/platform.git/blob - 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
1 package org.simantics.structural.synchronization.base;
2
3 import org.simantics.structural.synchronization.utils.ComponentBase;
4
5 public interface ModuleUpdaterFactoryBase<T extends ComponentBase<T>> {
6
7     public ModuleUpdaterBase<T> createUpdater(String id) throws Exception;
8
9 }