Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Barnes2005-11-07 23:17:24 +0000
committerKevin Barnes2005-11-07 23:17:24 +0000
commit44f3b13640f934cb4f66e93d64f7f4efd3a9034d (patch)
tree711a49a029517fe7822dd7ae00e6d02839563134 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IInternalDebugUIConstants.java
parent2ba2d568d064ef4df39df29f763218eed768f7c6 (diff)
downloadeclipse.platform.debug-44f3b13640f934cb4f66e93d64f7f4efd3a9034d.tar.gz
eclipse.platform.debug-44f3b13640f934cb4f66e93d64f7f4efd3a9034d.tar.xz
eclipse.platform.debug-44f3b13640f934cb4f66e93d64f7f4efd3a9034d.zip
reverting to premerge state
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IInternalDebugUIConstants.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IInternalDebugUIConstants.java48
1 files changed, 20 insertions, 28 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IInternalDebugUIConstants.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IInternalDebugUIConstants.java
index afeade528..67db6b14c 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IInternalDebugUIConstants.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IInternalDebugUIConstants.java
@@ -193,34 +193,26 @@ public interface IInternalDebugUIConstants {
*/
public static final String PREF_SWITCH_PERSPECTIVE_ON_SUSPEND= IDebugUIConstants.PLUGIN_ID + ".switch_perspective_on_suspend"; //$NON-NLS-1$
- /**
- * String preference controlling whether the debugger waits for a currently
- * pending (running or waiting) background build to complete before launching.
- * Valid values are either "always", "never", or "prompt".
- * If "always" or "never", launching will wait for builds to finish (or not) automatically.
- * If "prompt", the user will be prompted each time.
- *
- * @since 3.0
- */
- public static final String PREF_WAIT_FOR_BUILD= IDebugUIConstants.PLUGIN_ID + ".wait_for_build"; //$NON-NLS-1$
-
- /**
- * Maximum number of characters to display in the details area of the variables
- * view, or 0 if unlimited.
- *
- * @since 3.1
- */
- public static final String PREF_MAX_DETAIL_LENGTH = IDebugUIConstants.PLUGIN_ID + ".max_detail_length"; //$NON-NLS-1$
-
- /**
- * Font for Memory View
- *
- * @since 3.0
- */
- public final static String FONT_NAME = IDebugUIConstants.PLUGIN_ID + ".MemoryViewTableFont"; //$NON-NLS-1$
-
- public final static int ADD_UNIT_PER_LINE = 16; // number of addressable unit per line
- public final static int CHAR_PER_BYTE = 2; // number of characters to represent one byte
+ /**
+ * String preference controlling whether the debugger waits for a currently
+ * pending (running or waiting) background build to complete before launching.
+ * Valid values are either "always", "never", or "prompt".
+ * If "always" or "never", launching will wait for builds to finish (or not) automatically.
+ * If "prompt", the user will be prompted each time.
+ *
+ * @since 3.0
+ */
+ public static final String PREF_WAIT_FOR_BUILD= IDebugUIConstants.PLUGIN_ID + ".wait_for_build"; //$NON-NLS-1$
+
+ /**
+ * Font for Memory View
+ *
+ * @since 3.0
+ */
+ public final static String FONT_NAME = IDebugUIConstants.PLUGIN_ID + ".MemoryViewTableFont"; //$NON-NLS-1$
+
+ public final static int ADD_UNIT_PER_LINE = 16; // number of addressable unit per line
+ public final static int CHAR_PER_BYTE = 2; // number of characters to represent one byte
/**
* Memory view identifier (value <code>"org.eclipse.debug.ui.MemoryView"</code>).

Back to the top