|
Lines 1-40
Link Here
|
| 1 |
/******************************************************************************* |
1 |
/******************************************************************************* |
| 2 |
* Copyright (c) 2009 Ericsson and others. |
2 |
* Copyright (c) 2009 Ericsson and others. |
| 3 |
* All rights reserved. This program and the accompanying materials |
3 |
* All rights reserved. This program and the accompanying materials |
| 4 |
* are made available under the terms of the Eclipse Public License v1.0 |
4 |
* are made available under the terms of the Eclipse Public License v1.0 |
| 5 |
* which accompanies this distribution, and is available at |
5 |
* which accompanies this distribution, and is available at |
| 6 |
* http://www.eclipse.org/legal/epl-v10.html |
6 |
* http://www.eclipse.org/legal/epl-v10.html |
| 7 |
* |
7 |
* |
| 8 |
* Contributors: |
8 |
* Contributors: |
| 9 |
* Ericsson - initial implementation |
9 |
* Ericsson - initial implementation |
| 10 |
*******************************************************************************/ |
10 |
*******************************************************************************/ |
| 11 |
package org.eclipse.cdt.dsf.gdb; |
11 |
package org.eclipse.cdt.dsf.gdb; |
| 12 |
|
12 |
|
| 13 |
import org.eclipse.cdt.dsf.gdb.internal.GdbPlugin; |
13 |
import org.eclipse.cdt.dsf.gdb.internal.GdbPlugin; |
| 14 |
|
14 |
|
| 15 |
|
15 |
|
| 16 |
|
16 |
|
| 17 |
/** |
17 |
/** |
| 18 |
* @noimplement This interface is not intended to be implemented by clients. |
18 |
* @noimplement This interface is not intended to be implemented by clients. |
| 19 |
* @since 2.0 |
19 |
* @since 2.0 |
| 20 |
*/ |
20 |
*/ |
| 21 |
public interface IGdbDebugPreferenceConstants { |
21 |
public interface IGdbDebugPreferenceConstants { |
| 22 |
|
22 |
|
| 23 |
/** |
23 |
/** |
| 24 |
* Boolean preference whether to enable GDB traces. Default is <code>true</code>. |
24 |
* Boolean preference whether to enable GDB traces. Default is <code>true</code>. |
| 25 |
*/ |
25 |
*/ |
| 26 |
public static final String PREF_TRACES_ENABLE = "tracesEnable"; //$NON-NLS-1$ |
26 |
public static final String PREF_TRACES_ENABLE = "tracesEnable"; //$NON-NLS-1$ |
| 27 |
|
27 |
|
| 28 |
/** |
28 |
/** |
| 29 |
* Boolean preference whether to automatically terminate GDB when the inferior exists. Default is <code>true</code>. |
29 |
* Boolean preference whether to automatically terminate GDB when the inferior exists. Default is <code>true</code>. |
| 30 |
*/ |
30 |
*/ |
| 31 |
public static final String PREF_AUTO_TERMINATE_GDB = "autoTerminateGdb"; //$NON-NLS-1$ |
31 |
public static final String PREF_AUTO_TERMINATE_GDB = "autoTerminateGdb"; //$NON-NLS-1$ |
| 32 |
|
32 |
|
| 33 |
/** |
33 |
/** |
| 34 |
* Help prefixes. |
34 |
* Boolean preference whether to use the advanced Inspect debug text hover. Default is <code>true</code>. |
| 35 |
*/ |
35 |
* @since 3.0 |
| 36 |
public static final String PREFIX = GdbPlugin.PLUGIN_ID + "."; //$NON-NLS-1$ |
36 |
*/ |
| 37 |
|
37 |
public static final String PREF_USE_INSPECTOR_HOVER = "useInspectorHover"; //$NON-NLS-1$ |
| 38 |
public static final String PREFERENCE_PAGE= PREFIX + "preference_page_context"; //$NON-NLS-1$ |
38 |
|
| 39 |
} |
39 |
/** |
| 40 |
|
40 |
* Help prefixes. |
|
|
41 |
*/ |
| 42 |
public static final String PREFIX = GdbPlugin.PLUGIN_ID + "."; //$NON-NLS-1$ |
| 43 |
|
| 44 |
public static final String PREFERENCE_PAGE= PREFIX + "preference_page_context"; //$NON-NLS-1$ |
| 45 |
} |
| 46 |
|