]> gerrit.simantics Code Review - simantics/platform.git/blob
04320c9465b513fc6c99f4eaf4725886326c6a7d
[simantics/platform.git] /
1 package org.simantics.structural.synchronization.base;
2
3 import org.simantics.db.exception.DatabaseException;
4
5
6 public interface ModuleUpdaterFactoryBase<T extends ComponentBase<T>> {
7
8     public ModuleUpdaterBase<T> createUpdater(String id) throws DatabaseException;
9
10 }