]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/componentTypeEditor/ComponentTypeViewerSectionFactory.java
Fix change of type in component property editor when range is present
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / componentTypeEditor / ComponentTypeViewerSectionFactory.java
1 package org.simantics.modeling.ui.componentTypeEditor;
2
3 import org.simantics.db.ReadGraph;
4 import org.simantics.db.Resource;
5 import org.simantics.db.exception.DatabaseException;
6
7 public interface ComponentTypeViewerSectionFactory {
8     boolean doesSupport(ReadGraph graph, Resource componentType) throws DatabaseException;
9     ComponentTypeViewerSection create(ComponentTypeViewerData data);
10 }