Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4c1ee042d9d51d113b52b29f0f797e5069112f7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*******************************************************************************
 * Copyright (c) 2007, 2010 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.debug.internal.core;

import org.eclipse.core.runtime.IStatus;
import org.eclipse.debug.core.DebugPlugin;

/**
 * Contains constants to be used internally in all debug components
 *
 * @since 3.4
 */
public interface IInternalDebugCoreConstants {

	/**
	 * Represents the empty string
	 */
	String EMPTY_STRING = ""; //$NON-NLS-1$

	/**
	 * Boolean preference controlling whether status handler extensions
	 * are enabled. Default value is <code>true</code>. When disabled
	 * any call to {@link DebugPlugin#getStatusHandler(IStatus)} will return <code>null</code>.
	 *
	 * @since 3.4.2
	 */
	String PREF_ENABLE_STATUS_HANDLERS = DebugPlugin.getUniqueIdentifier() + ".PREF_ENABLE_STATUS_HANDLERS"; //$NON-NLS-1$

	/**
	 * Persistence of breakpoint manager enabled state.
	 *
	 * @since 3.6
	 */
	String PREF_BREAKPOINT_MANAGER_ENABLED_STATE =  DebugPlugin.getUniqueIdentifier() + ".PREF_BREAKPOINT_MANAGER_ENABLED_STATE"; //$NON-NLS-1$

}

Back to the top