Community
Participate
Working Groups
* As part of the feature 156527 a new extension point org.eclipse.tptp.platform.common.ui\schema\NavigatorActions.exsd was defined for exploiters to contribute import/export log, sdb actions
*/
contributeImportActions(menu);
// Bug 142823
contributeExportActions(menu);
// Do not add import and export menus for correlation folder and items
boolean handleActions = true;
if (sel instanceof LogicalFolder) {
LogicalFolder folder = (LogicalFolder) sel;
if (folder.getParent() == null) {
String name = folder.getName();
if (name.equals(CommonLTAMessages.LOGN_CORFLD)) {
handleActions = false;
}
} else if (sel instanceof CorrelationContainerProxy) {
if (handleActions) {
contributeAnalyzeActions(menu);
openReportAction.selectionChanged((IStructuredSelection)getContext().getSelection());