Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-03-20 22:13:00 +0000
committerAlexander Kurtakov2019-03-20 22:13:00 +0000
commitad89cc8c198cf45722e5c2591be9ae9a8a2e2438 (patch)
tree663f49bea590b8bd8cf61cb01bdc704ba0722994 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/DebugActionHandler.java
parent078de41a6c711a48b150e8ceafd2752ff0845595 (diff)
downloadeclipse.platform.debug-ad89cc8c198cf45722e5c2591be9ae9a8a2e2438.tar.gz
eclipse.platform.debug-ad89cc8c198cf45722e5c2591be9ae9a8a2e2438.tar.xz
eclipse.platform.debug-ad89cc8c198cf45722e5c2591be9ae9a8a2e2438.zip
Handled by Override annotation. Change-Id: Ic81aef130640547b3d07fd874f9da197bdbc1644 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/DebugActionHandler.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/DebugActionHandler.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/DebugActionHandler.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/DebugActionHandler.java
index 4c7ea7ae0..ed3c76946 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/DebugActionHandler.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/DebugActionHandler.java
@@ -59,9 +59,6 @@ public abstract class DebugActionHandler implements IHandler2 {
return null;
}
- /* (non-Javadoc)
- * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
- */
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
IHandler2 delegate = getDelegate();
@@ -71,9 +68,6 @@ public abstract class DebugActionHandler implements IHandler2 {
return null;
}
- /* (non-Javadoc)
- * @see org.eclipse.core.commands.IHandler#addHandlerListener(org.eclipse.core.commands.IHandlerListener)
- */
@Override
public void addHandlerListener(IHandlerListener handlerListener) {
IHandler2 delegate = getDelegate();
@@ -82,16 +76,10 @@ public abstract class DebugActionHandler implements IHandler2 {
}
}
- /* (non-Javadoc)
- * @see org.eclipse.core.commands.IHandler#dispose()
- */
@Override
public void dispose() {
}
- /* (non-Javadoc)
- * @see org.eclipse.core.commands.IHandler#isEnabled()
- */
@Override
public boolean isEnabled() {
IHandler2 delegate = getDelegate();
@@ -101,9 +89,6 @@ public abstract class DebugActionHandler implements IHandler2 {
return false;
}
- /* (non-Javadoc)
- * @see org.eclipse.core.commands.IHandler#isHandled()
- */
@Override
public boolean isHandled() {
IHandler2 delegate = getDelegate();
@@ -113,9 +98,6 @@ public abstract class DebugActionHandler implements IHandler2 {
return false;
}
- /* (non-Javadoc)
- * @see org.eclipse.core.commands.IHandler#removeHandlerListener(org.eclipse.core.commands.IHandlerListener)
- */
@Override
public void removeHandlerListener(IHandlerListener handlerListener) {
IHandler2 delegate = getDelegate();
@@ -124,9 +106,6 @@ public abstract class DebugActionHandler implements IHandler2 {
}
}
- /* (non-Javadoc)
- * @see org.eclipse.core.commands.IHandler2#setEnabled(java.lang.Object)
- */
@Override
public void setEnabled(Object evaluationContext) {
IHandler2 delegate = getDelegate();

Back to the top