package org.simantics.modeling.ui.componentTypeEditor; import org.simantics.db.ReadGraph; import org.simantics.db.Resource; import org.simantics.db.exception.DatabaseException; public interface ComponentTypeViewerSectionFactory { boolean doesSupport(ReadGraph graph, Resource componentType) throws DatabaseException; ComponentTypeViewerSection create(ComponentTypeViewerData data); }