Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractDebugActionDelegate.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractDebugActionDelegate.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractDebugActionDelegate.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractDebugActionDelegate.java
index b3ecbeb76..0a1293bfe 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractDebugActionDelegate.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractDebugActionDelegate.java
@@ -74,17 +74,11 @@ public abstract class AbstractDebugActionDelegate implements IViewActionDelegate
*/
public AbstractDebugActionDelegate() {}
- /* (non-Javadoc)
- * @see org.eclipse.ui.IWorkbenchWindowActionDelegate#dispose()
- */
@Override
public void dispose(){
fSelection= null;
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
- */
@Override
public void run(IAction action){
if (action.isEnabled()) {
@@ -138,9 +132,6 @@ public abstract class AbstractDebugActionDelegate implements IViewActionDelegate
}
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action.IAction, org.eclipse.jface.viewers.ISelection)
- */
@Override
public void selectionChanged(IAction action, ISelection s) {
boolean wasInitialized= initialize(action, s);
@@ -211,9 +202,6 @@ public abstract class AbstractDebugActionDelegate implements IViewActionDelegate
return IInternalDebugCoreConstants.EMPTY_STRING;
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.IViewActionDelegate#init(org.eclipse.ui.IViewPart)
- */
@Override
public void init(IViewPart view) {
fViewPart = view;
@@ -335,9 +323,6 @@ public abstract class AbstractDebugActionDelegate implements IViewActionDelegate
return fIsShift;
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.IActionDelegate2#runWithEvent(org.eclipse.jface.action.IAction, org.eclipse.swt.widgets.Event)
- */
@Override
public void runWithEvent(IAction action, Event event) {
if (action.isEnabled()) {
@@ -350,9 +335,6 @@ public abstract class AbstractDebugActionDelegate implements IViewActionDelegate
}
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.IActionDelegate2#init(org.eclipse.jface.action.IAction)
- */
@Override
public void init(IAction action) {
fAction = action;

Back to the top