Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2013-01-17 04:48:19 +0000
committerPawel Piech2013-02-27 18:34:53 +0000
commit552635fba630d89f6e4ddecba9e4ca0aacb087e1 (patch)
treeffe61a48cbf18a5ee84ba8aa8a568fa6abba0dad /org.eclipse.debug.ui/ui/org/eclipse/debug/ui
parentc958779d1cc310491ca2d8b6960fa8633ed0474f (diff)
downloadeclipse.platform.debug-552635fba630d89f6e4ddecba9e4ca0aacb087e1.tar.gz
eclipse.platform.debug-552635fba630d89f6e4ddecba9e4ca0aacb087e1.tar.xz
eclipse.platform.debug-552635fba630d89f6e4ddecba9e4ca0aacb087e1.zip
Bug 372181 - Working set support for Expressions View
Refactored working set support to consolidate functionality in Expressions View.
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java2
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java18
2 files changed, 19 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java
index 29c6d6202..d9d8c7de9 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java
@@ -270,7 +270,7 @@ public abstract class AbstractDebugView extends PageBookView implements IDebugVi
*/
public void createControl(Composite parent) {
Viewer viewer = createViewer(parent);
- setViewer(viewer);
+ setViewer(viewer);
}
/**
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java
index bc849b74d..0605fb950 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java
@@ -1153,6 +1153,16 @@ public interface IDebugUIConstants {
public static final String BREAKPOINT_WORKINGSET_ID = "org.eclipse.debug.ui.breakpointWorkingSet"; //$NON-NLS-1$
/**
+ * Identifier for expression working set type.
+ * <br>
+ * Value is: <code>org.eclipse.debug.ui.expressionWorkingSet</code>
+ *
+ * @since 3.9
+ */
+ public static final String EXPRESSION_WORKINGSET_ID = "org.eclipse.debug.ui.expressionWorkingSet"; //$NON-NLS-1$
+
+
+ /**
* Memory view identifier (value <code>"org.eclipse.debug.ui.MemoryView"</code>).
*
* @since 3.2
@@ -1324,4 +1334,12 @@ public interface IDebugUIConstants {
* @since 3.8
*/
public final static String COLUMN_ID_VARIABLE_VALUE_TYPE = COLUMN_PRESENTATION_ID_VARIABLE + ".COL_VALUE_TYPE"; //$NON-NLS-1$
+
+ /**
+ * Expression view property used to store the currently selected working
+ * set names. The working set names are stored as a <code>String[]</code>.
+ *
+ * @since 3.9
+ */
+ public final static String PROP_EXPRESSIONS_WORKING_SETS = IDebugUIConstants.PLUGIN_ID + ".PROP_EXPRESSION_WORKING_SETS"; //$NON-NLS-1$
}

Back to the top