Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Chuong2011-02-07 19:48:39 +0000
committerPatrick Chuong2011-02-07 19:48:39 +0000
commit2f04b81343a5bb24327e06b7ac4b84e4c9b0d5b4 (patch)
treed7c7151a210a1908d217ade4c1863471b2928db7 /debug/org.eclipse.cdt.debug.core
parent3806bba6bc0f4e165bd5e132ce2407995b1ce400 (diff)
downloadorg.eclipse.cdt-2f04b81343a5bb24327e06b7ac4b84e4c9b0d5b4.tar.gz
org.eclipse.cdt-2f04b81343a5bb24327e06b7ac4b84e4c9b0d5b4.tar.xz
org.eclipse.cdt-2f04b81343a5bb24327e06b7ac4b84e4c9b0d5b4.zip
Bug 312121 - [breakpoints] Show fullpath not working in breakpoints view for other breakpoint type
Diffstat (limited to 'debug/org.eclipse.cdt.debug.core')
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/ICDebugInternalConstants.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/ICDebugInternalConstants.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/ICDebugInternalConstants.java
index 4e736f482ac..331d18dd0f7 100644
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/ICDebugInternalConstants.java
+++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/ICDebugInternalConstants.java
@@ -44,4 +44,14 @@ public class ICDebugInternalConstants {
* plus this key
*/
public static final String SHOW_FULL_PATHS_PREF_KEY = "org.eclipse.cdt.debug.ui.cDebug.show_full_paths"; //$NON-NLS-1$
+
+ /**
+ * An attribute set by a non-ICBreakpoint to support fullpath capability in the Breakpoints view.
+ * If this attribute exists, not <code>null</code>, in the breakpoint marker or the breakpoint is an
+ * ICBreakpoint type, then the show fullpath action in the Breakpoints view is enabled, otherwise
+ * disabled. The show fullpath action does not toggle the value of this breakpoint attribute, it is
+ * the breakpoint's responsibility to monitor the SHOW_FULL_PATHS_PREF_KEY value change and update
+ * the breakpoint presentation in the Breakpoints view.
+ */
+ public static final String ATTR_CAPABLE_OF_SHOW_FULL_PATHS = "org.eclipse.cdt.debug.ui.cDebug.capable_of_show_full_paths"; //$NON-NLS-1$
}

Back to the top