import org.eclipse.jface.action.IAction;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.action.MenuManager;
-import org.eclipse.jface.util.Assert;
+//incastrix
+//import org.eclipse.jface.text.Assert;
+import org.eclipse.core.runtime.Assert;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.ISelectionChangedListener;
import org.eclipse.jface.viewers.ISelectionProvider;
fEditor = editor;
fGroupName = groupName;
- ISelectionProvider provider = fSite.getSelectionProvider();
- ISelection selection = provider.getSelection();
+ //ISelectionProvider provider = fSite.getSelectionProvider();
+ //ISelection selection = provider.getSelection();
// fAddImport= new AddImportOnSelectionAction(editor);
// fAddImport.setActionDefinitionId(IJavaEditorActionDefinitionIds.ADD_IMPORT);
}
}
- private int appendToGroup(IMenuManager menu, IAction action) {
- if (action != null && action.isEnabled()) {
- menu.appendToGroup(fGroupName, action);
- return 1;
- }
- return 0;
- }
-
- private int addAction(IMenuManager menu, IAction action) {
- if (action != null && action.isEnabled()) {
- menu.add(action);
- return 1;
- }
- return 0;
- }
+// private int appendToGroup(IMenuManager menu, IAction action) {
+// if (action != null && action.isEnabled()) {
+// menu.appendToGroup(fGroupName, action);
+// return 1;
+// }
+// return 0;
+// }
+
+// private int addAction(IMenuManager menu, IAction action) {
+// if (action != null && action.isEnabled()) {
+// menu.add(action);
+// return 1;
+// }
+// return 0;
+// }
private int addEditorAction(IMenuManager menu, String actionID) {
if (fEditor == null)