1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-09 01:05:38 +02:00

Added default format preference constants for variables, expressions and registers.

This commit is contained in:
Mikhail Khodjaiants 2003-03-28 19:19:33 +00:00
parent c54ca244e4
commit b5c5fe52be
2 changed files with 19 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2003-03-28 Mikhail Khodjaiants
Added default format preference constants for variables, expressions and registers.
* ICDebugConstants.java
2003-03-28 Mikhail Khodjaiants 2003-03-28 Mikhail Khodjaiants
Core support of the 'Run To C/C++ Line' and 'Resume At C/C++ Line' actions for external files. Core support of the 'Run To C/C++ Line' and 'Resume At C/C++ Line' actions for external files.
* IJumpToLine.java * IJumpToLine.java

View file

@ -25,4 +25,19 @@ public interface ICDebugConstants
* disassembly mode. * disassembly mode.
*/ */
public static final String PREF_AUTO_DISASSEMBLY = PLUGIN_ID + "cDebug.auto_disassembly"; //$NON-NLS-1$ public static final String PREF_AUTO_DISASSEMBLY = PLUGIN_ID + "cDebug.auto_disassembly"; //$NON-NLS-1$
/**
* The identifier of the default variable format to use in the variables view
*/
public static final String PREF_DEFAULT_VARIABLE_FORMAT = PLUGIN_ID + "cDebug.default_variable_format"; //$NON-NLS-1$
/**
* The identifier of the default register format to use in the registers view
*/
public static final String PREF_DEFAULT_REGISTER_FORMAT = PLUGIN_ID + "cDebug.default_register_format"; //$NON-NLS-1$
/**
* The identifier of the default expression format to use in the expressions views
*/
public static final String PREF_DEFAULT_EXPRESSION_FORMAT = PLUGIN_ID + "cDebug.default_expression_format"; //$NON-NLS-1$
} }