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