Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2012-01-18 23:07:16 +0000
committerPawel Piech2012-01-18 23:08:22 +0000
commit4627f4d8306a47a42f55bfc62a92670eade4c12f (patch)
tree3ad01c1879cf15770879db680e4945fa8d63b3da /org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java
parent9635e7ba2371b094c3468f0100800b68366765d1 (diff)
downloadeclipse.platform.debug-4627f4d8306a47a42f55bfc62a92670eade4c12f.tar.gz
eclipse.platform.debug-4627f4d8306a47a42f55bfc62a92670eade4c12f.tar.xz
eclipse.platform.debug-4627f4d8306a47a42f55bfc62a92670eade4c12f.zip
Bug 340710 - [var][expr][reg] Make the default variable view column IDs
public.
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java37
1 files changed, 37 insertions, 0 deletions
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 7cdd455ea..e7de3e0b8 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
@@ -1280,4 +1280,41 @@ public interface IDebugUIConstants {
* @since 3.5
*/
public static final String DEBUG_CONTEXT_SOURCE_NAME = "debugContext"; //$NON-NLS-1$
+
+
+ /**
+ * ID for the default column layout for the variables, expressions
+ * and registers views.
+ *
+ * @since 3.8
+ */
+ public final static String COLUMN_PRESENTATION_ID_VARIABLE = IDebugUIConstants.PLUGIN_ID + ".VARIALBE_COLUMN_PRESENTATION"; //$NON-NLS-1$
+
+ /**
+ * Default ID for the "Name" column in the Variables views.
+ *
+ * @since 3.8
+ */
+ public final static String COLUMN_ID_VARIABLE_NAME = COLUMN_PRESENTATION_ID_VARIABLE + ".COL_VAR_NAME"; //$NON-NLS-1$
+
+ /**
+ * Default ID for the "Declared Type" column in the Variables views.
+ *
+ * @since 3.8
+ */
+ public final static String COLUMN_ID_VARIABLE_TYPE = COLUMN_PRESENTATION_ID_VARIABLE + ".COL_VAR_TYPE"; //$NON-NLS-1$
+
+ /**
+ * Default ID for the "Value" column in the Variables views.
+ *
+ * @since 3.8
+ */
+ public final static String COLUMN_ID_VARIABLE_VALUE = COLUMN_PRESENTATION_ID_VARIABLE + ".COL_VAR_VALUE"; //$NON-NLS-1$
+
+ /**
+ * Default ID for the "Actual Type" column in the Variables views.
+ *
+ * @since 3.8
+ */
+ public final static String COLUMN_ID_VARIABLE_VALUE_TYPE = COLUMN_PRESENTATION_ID_VARIABLE + ".COL_VALUE_TYPE"; //$NON-NLS-1$
}

Back to the top