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