}
}
private void onMouseMiddleClick(TreeItem item) {
if (item != null && item.getData() instanceof IFolder) {
AggregateFolderAction action = new AggregateFolderAction();
action.setActivePart(null, this);
action.selectionChanged(null, new StructuredSelection(item.getData()));
action.run(null);
}
}