use of org.palladiosimulator.editors.sirius.repository.custom.properties.editorsections.EventTypesEditorSection in project Palladio-Editors-Sirius by PalladioSimulator.
the class EventGroupTableLifecycleManager method setPropertySection.
@Override
protected void setPropertySection(Composite parent) {
editorSection = new EventTypesEditorSection(parent);
editorSection.setViewerContentProvider(new AdapterFactoryContentProvider(adapterFactory));
editorSection.setViewerLabelProvider(new AdapterFactoryLabelProvider(new EventTypesTabItemProviderAdapterFactory(new PalladioItemProviderAdapterFactory(adapterFactory))));
EventGroup input = (EventGroup) controller.getValue();
editorSection.setViewerInput(input);
((EventTypesEditorSection) editorSection).getAddButtonListener().setSelectedInterface((EventGroup) input);
}
Aggregations