]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.structural.synchronization/src/org/simantics/structural/synchronization/utils/ComponentFactory.java
Refactoring of simulator toolkit
[simantics/platform.git] / bundles / org.simantics.structural.synchronization / src / org / simantics / structural / synchronization / utils / ComponentFactory.java
1 package org.simantics.structural.synchronization.utils;
2
3 public interface ComponentFactory<T extends ComponentBase<T>> {
4
5         T create(String uid);
6         
7 }