Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Rennie2012-04-12 16:46:48 +0000
committerMike Rennie2012-04-12 16:46:48 +0000
commita50977be59f5d07ad2586e88318f8edddd26a76c (patch)
tree0ba48509dabd949d8e619f2edb6138d5dcb9b43b /org.eclipse.debug.ui/ui/org/eclipse
parent916b44d62f73459a05e0d819300c5897f519aacc (diff)
downloadeclipse.platform.debug-a50977be59f5d07ad2586e88318f8edddd26a76c.tar.gz
eclipse.platform.debug-a50977be59f5d07ad2586e88318f8edddd26a76c.tar.xz
eclipse.platform.debug-a50977be59f5d07ad2586e88318f8edddd26a76c.zip
[nobug] synchronize PDE compiler settings + adjust JavaDoc processingv20120412-1646
prefs
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ActionMessages.java6
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ActionMessages.properties4
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/RulerEnableDisableBreakpointAction.java8
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ToggleBreakpointAction.java2
4 files changed, 7 insertions, 13 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ActionMessages.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ActionMessages.java
index 7db55d09a..d4ed16c31 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ActionMessages.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ActionMessages.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2012 IBM Corporation and others.
+ * Copyright (c) 2000, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -143,8 +143,6 @@ public class ActionMessages extends NLS {
public static String ToggleBreakpointAction_0;
public static String ToggleBreakpointAction_1;
public static String ToggleBreakpointAction_2;
-
- public static String ToggleBreakpointAction_3;
public static String ToggleStepFiltersAction_0;
public static String ToggleStepFiltersAction_1;
@@ -195,8 +193,6 @@ public class ActionMessages extends NLS {
public static String RulerEnableDisableBreakpointAction_2;
public static String RulerEnableDisableBreakpointAction_3;
- public static String RulerEnableDisableBreakpointAction_4;
-
public static String DisconnectAction_0;
public static String DisconnectAction_3;
public static String DropToFrameAction_0;
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ActionMessages.properties b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ActionMessages.properties
index 2c331de38..7df10e420 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ActionMessages.properties
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ActionMessages.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2012 IBM Corporation and others.
+# Copyright (c) 2000, 2011 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
@@ -108,7 +108,6 @@ ToggleDetailPaneAction_8=Hide the Detail Pane so that only the Main Tree View is
ToggleBreakpointAction_0=Toggle Brea&kpoint
ToggleBreakpointAction_1=Error
ToggleBreakpointAction_2=Unable to toggle breakpoint
-ToggleBreakpointAction_3=Double Click
ToggleStepFiltersAction_0=Use Step Filters
ToggleStepFiltersAction_1=&Use Step Filters
@@ -162,7 +161,6 @@ RulerEnableDisableBreakpointAction_0=Error
RulerEnableDisableBreakpointAction_1=Failed to toggle breakpoint enablement
RulerEnableDisableBreakpointAction_2=&Disable Breakpoint
RulerEnableDisableBreakpointAction_3=&Enable Breakpoint
-RulerEnableDisableBreakpointAction_4=Shift+Double Click
TerminateAndRelaunchAction_0=org.eclipse.debug.ui.commands.TerminateAndRelaunch
TerminateAndRelaunchAction_3=Terminate and Relaunch
TerminateAndRelaunchAction_4=Terminate and Relaunch
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/RulerEnableDisableBreakpointAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/RulerEnableDisableBreakpointAction.java
index fb19c1a25..ff37aa448 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/RulerEnableDisableBreakpointAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/RulerEnableDisableBreakpointAction.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2012 IBM Corporation and others.
+ * Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -53,14 +53,14 @@ public class RulerEnableDisableBreakpointAction extends RulerBreakpointAction im
if (fBreakpoint != null) {
try {
if (fBreakpoint.isEnabled()) {
- setText(ActionMessages.RulerEnableDisableBreakpointAction_2 + '\t' + ActionMessages.RulerEnableDisableBreakpointAction_4);
+ setText(ActionMessages.RulerEnableDisableBreakpointAction_2);
} else {
- setText(ActionMessages.RulerEnableDisableBreakpointAction_3 + '\t' + ActionMessages.RulerEnableDisableBreakpointAction_4);
+ setText(ActionMessages.RulerEnableDisableBreakpointAction_3);
}
} catch (CoreException e) {
}
} else {
- setText(ActionMessages.RulerEnableDisableBreakpointAction_2 + '\t' + ActionMessages.RulerEnableDisableBreakpointAction_4);
+ setText(ActionMessages.RulerEnableDisableBreakpointAction_2);
}
}
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ToggleBreakpointAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ToggleBreakpointAction.java
index 0a0aadd0e..d15da736e 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ToggleBreakpointAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ToggleBreakpointAction.java
@@ -67,7 +67,7 @@ public class ToggleBreakpointAction extends Action implements IUpdate {
* @param rulerInfo specifies location the user has double-clicked
*/
public ToggleBreakpointAction(IWorkbenchPart part, IDocument document, IVerticalRulerInfo rulerInfo) {
- super(ActionMessages.ToggleBreakpointAction_0 + '\t' + ActionMessages.ToggleBreakpointAction_3);
+ super(ActionMessages.ToggleBreakpointAction_0);
fPart = part;
fDocument = document;
fRulerInfo = rulerInfo;

Back to the top