All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jdt.debug.ui.IJavaDebugUIConstants Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2000, 2008 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.debug.ui;


import org.eclipse.jdt.internal.debug.ui.JDIDebugUIPlugin;

/**
 * Constant definitions for Java debug UI plug-in.
 * 

* Constant definitions only. *

* @since 2.0 * @noimplement This interface is not intended to be implemented by clients. * @noextend This interface is not intended to be extended by clients. */ public interface IJavaDebugUIConstants { /** * Plug-in identifier for the Java Debug UI */ public static final String PLUGIN_ID = JDIDebugUIPlugin.getUniqueIdentifier(); /** * Extension point identifier for contributions of a UI page that corresponds to a VMInstallType (value "vmInstallTypePage"). */ public static final String EXTENSION_POINT_VM_INSTALL_TYPE_PAGE = "vmInstallTypePage"; //$NON-NLS-1$ /** * Extension point identifier for contributions of a wizard page that for a VMInstallType * (value "vmInstallPages"). * * @since 3.3 */ public static final String EXTENSION_POINT_VM_INSTALL_PAGES = "vmInstallPages"; //$NON-NLS-1$ /** * Display view identifier (value "org.eclipse.jdt.debug.ui.DisplayView"). */ public static final String ID_DISPLAY_VIEW= PLUGIN_ID + ".DisplayView"; //$NON-NLS-1$ /** * Java snippet editor identifier (value "org.eclipse.jdt.debug.ui.SnippetEditor") */ public static final String ID_JAVA_SNIPPET_EDITOR= PLUGIN_ID + ".SnippetEditor"; //$NON-NLS-1$ /** * Java snippet editor context menu identifier (value "#JavaSnippetEditorContext"). */ public static final String JAVA_SNIPPET_EDITOR_CONTEXT_MENU= "#JavaSnippetEditorContext"; //$NON-NLS-1$ /** * Java snippet editor ruler menu identifier (value "#JavaSnippetRulerContext"). */ public static final String JAVA_SNIPPET_EDITOR_RULER_MENU= "#JavaSnippetRulerContext"; //$NON-NLS-1$ /** * Identifier for a group of evaluation actions in a menu (value "evaluationGroup"). */ public static final String EVALUATION_GROUP= "evaluationGroup"; //$NON-NLS-1$ /** * Status code indicating an unexpected internal error (value 150). */ public static final int INTERNAL_ERROR = 150; /** * Boolean preference indicating whether the monitor and thread information should be displayed in the debug view. * A view may override this preference, and if so, stores its preference, prefixed by view id. * * @since 3.2 */ public static final String PREF_SHOW_MONITOR_THREAD_INFO = PLUGIN_ID + ".show_monitor_thread_info"; //$NON-NLS-1$ /** * Boolean preference indicating whether system threads should appear visible in the debug view. * * @since 3.2 */ public static final String PREF_SHOW_SYSTEM_THREADS = PLUGIN_ID + ".show_system_threads"; //$NON-NLS-1$ /** * Boolean preference indicating whether running threads should appear visible in the debug view. * * @since 3.10 */ public static final String PREF_SHOW_RUNNING_THREADS = PLUGIN_ID + ".show_running_threads"; //$NON-NLS-1$ /** * Boolean preference indicating whether thread groups should be displayed in the debug view. * * @since 3.2 */ public static final String PREF_SHOW_THREAD_GROUPS = PLUGIN_ID + ".show_thread_group_info"; //$NON-NLS-1$ /** * Integer preference for the maximum number of instances to show with the All Instances action * * @since 3.3 */ public static final String PREF_ALLINSTANCES_MAX_COUNT = PLUGIN_ID + ".all_instances_max_count"; //$NON-NLS-1$ /** * Integer preference for the maximum number of references to show with the All References action * * @since 3.3 */ public static final String PREF_ALLREFERENCES_MAX_COUNT = PLUGIN_ID + ".all_references_max_count"; //$NON-NLS-1$ }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy