Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/SuspendCommandAction.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/SuspendCommandAction.java48
1 files changed, 24 insertions, 24 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/SuspendCommandAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/SuspendCommandAction.java
index a25e4a59d..e32cd6bae 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/SuspendCommandAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/SuspendCommandAction.java
@@ -27,44 +27,44 @@ import org.eclipse.jface.resource.ImageDescriptor;
*/
public class SuspendCommandAction extends DebugCommandAction {
- public SuspendCommandAction() {
- setActionDefinitionId("org.eclipse.debug.ui.commands.Suspend"); //$NON-NLS-1$
- }
+ public SuspendCommandAction() {
+ setActionDefinitionId("org.eclipse.debug.ui.commands.Suspend"); //$NON-NLS-1$
+ }
- @Override
+ @Override
public String getText() {
- return ActionMessages.SuspendAction_0;
- }
+ return ActionMessages.SuspendAction_0;
+ }
- @Override
+ @Override
public String getHelpContextId() {
- return "org.eclipse.debug.ui.suspend_action_context"; //$NON-NLS-1$
- }
+ return "org.eclipse.debug.ui.suspend_action_context"; //$NON-NLS-1$
+ }
- @Override
+ @Override
public String getId() {
- return "org.eclipse.debug.ui.commands.Suspend"; //$NON-NLS-1$
- }
+ return "org.eclipse.debug.ui.commands.Suspend"; //$NON-NLS-1$
+ }
- @Override
+ @Override
public String getToolTipText() {
- return ActionMessages.SuspendAction_3;
- }
+ return ActionMessages.SuspendAction_3;
+ }
- @Override
+ @Override
public ImageDescriptor getDisabledImageDescriptor() {
- return DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_DLCL_SUSPEND);
- }
+ return DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_DLCL_SUSPEND);
+ }
- @Override
+ @Override
public ImageDescriptor getHoverImageDescriptor() {
- return DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_ELCL_SUSPEND);
- }
+ return DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_ELCL_SUSPEND);
+ }
- @Override
+ @Override
public ImageDescriptor getImageDescriptor() {
- return DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_ELCL_SUSPEND);
- }
+ return DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_ELCL_SUSPEND);
+ }
@Override
protected Class<ISuspendHandler> getCommandType() {

Back to the top