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