return;
}
IStructuredSelection selection = (IStructuredSelection) fViewer.getSelection();
if (!selection.isEmpty()) {
DeleteTypesAction deleteAction = new DeleteTypesAction(getShell(), selection);
deleteAction.run();
if (deleteAction.isConfirmed())
fViewer.remove(selection.getFirstElement());
}
}