Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2009-02-13 21:33:49 +0000
committerPawel Piech2009-02-13 21:33:49 +0000
commit8c876087301b2b35255037ecdaeeacf05b6ee7db (patch)
tree047acfdba9f534ad605b94e10cf7dc2270518eec /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IDebugHelpContextIds.java
parent9710daf8cccf0f52a56cd7b59cf5592ab5270ef0 (diff)
downloadeclipse.platform.debug-8c876087301b2b35255037ecdaeeacf05b6ee7db.tar.gz
eclipse.platform.debug-8c876087301b2b35255037ecdaeeacf05b6ee7db.tar.xz
eclipse.platform.debug-8c876087301b2b35255037ecdaeeacf05b6ee7db.zip
Bug 262262 - [breadcrumb] Add actions to quickly switch between contexts in Debug view.
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IDebugHelpContextIds.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IDebugHelpContextIds.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IDebugHelpContextIds.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IDebugHelpContextIds.java
index 611d0e142..62a5a2d42 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IDebugHelpContextIds.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IDebugHelpContextIds.java
@@ -74,7 +74,9 @@ public interface IDebugHelpContextIds {
public static final String DEBUG_VIEW_MODE_AUTO_ACTION = PREFIX + "debug_view_mode_auto_action_context"; //$NON-NLS-1$
public static final String DEBUG_VIEW_MODE_FULL_ACTION = PREFIX + "debug_view_mode_full_action_context"; //$NON-NLS-1$
public static final String DEBUG_VIEW_MODE_COMPACT_ACTION = PREFIX + "debug_view_mode_compact_action_context"; //$NON-NLS-1$
-
+ public static final String NEXT_THREAD_NAVIGATE_ACTION = PREFIX + "next_thread_navigate_action_context"; //$NON-NLS-1$
+ public static final String PREVIOUS_THREAD_NAVIGATE_ACTION = PREFIX + "previous_thread_navigate_action_context"; //$NON-NLS-1$
+
// Views
public static final String DEBUG_VIEW = PREFIX + "debug_view_context"; //$NON-NLS-1$
public static final String VARIABLE_VIEW = PREFIX + "variable_view_context"; //$NON-NLS-1$

Back to the top