]> gerrit.simantics Code Review - simantics/platform.git/blob - ui/componentTypeEditor/ComponentTypeViewerSection.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / ui / componentTypeEditor / ComponentTypeViewerSection.java
1 package org.simantics.modeling.ui.componentTypeEditor;\r
2 \r
3 import org.eclipse.ui.forms.widgets.Section;\r
4 import org.simantics.db.ReadGraph;\r
5 import org.simantics.db.exception.DatabaseException;\r
6 \r
7 public interface ComponentTypeViewerSection {\r
8 \r
9     void setReadOnly(boolean readOnly);\r
10     Section getSection();\r
11     void update(ComponentTypePropertiesResult result);\r
12     double getPriority();\r
13     Object getSectionSpecificData(ReadGraph graph, ComponentTypeViewerPropertyInfo info) throws DatabaseException;\r
14     double getDataPriority();\r
15 \r
16 }\r