KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > debug > ui > IJavaDebugUIConstants


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.jdt.debug.ui;
12
13
14 import org.eclipse.jdt.internal.debug.ui.JDIDebugUIPlugin;
15  
16 /**
17  * Constant definitions for Java debug UI plug-in.
18  * <p>
19  * Clients are not intended to implement this interface; constant definitions only.
20  * </p>
21  * @since 2.0
22  */

23 public interface IJavaDebugUIConstants {
24     /**
25      * Plug-in identifier for the Java Debug UI
26      */

27     public static final String JavaDoc PLUGIN_ID = JDIDebugUIPlugin.getUniqueIdentifier();
28
29     /**
30      * Extension point identifier for contributions of a UI page that corresponds to a VMInstallType (value <code>"vmInstallTypePage"</code>).
31      */

32     public static final String JavaDoc EXTENSION_POINT_VM_INSTALL_TYPE_PAGE = "vmInstallTypePage"; //$NON-NLS-1$
33

34     /**
35      * Display view identifier (value <code>"org.eclipse.jdt.debug.ui.DisplayView"</code>).
36      */

37     public static final String JavaDoc ID_DISPLAY_VIEW= PLUGIN_ID + ".DisplayView"; //$NON-NLS-1$
38

39     /**
40      * Java snippet editor identifier (value <code>"org.eclipse.jdt.debug.ui.SnippetEditor"</code>)
41      */

42     public static final String JavaDoc ID_JAVA_SNIPPET_EDITOR= PLUGIN_ID + ".SnippetEditor"; //$NON-NLS-1$
43

44     /**
45      * Java snippet editor context menu identifier (value <code>"#JavaSnippetEditorContext"</code>).
46      */

47     public static final String JavaDoc JAVA_SNIPPET_EDITOR_CONTEXT_MENU= "#JavaSnippetEditorContext"; //$NON-NLS-1$
48

49     /**
50      * Java snippet editor ruler menu identifier (value <code>"#JavaSnippetRulerContext"</code>).
51      */

52     public static final String JavaDoc JAVA_SNIPPET_EDITOR_RULER_MENU= "#JavaSnippetRulerContext"; //$NON-NLS-1$
53

54     /**
55      * Identifier for a group of evaluation actions in a menu (value <code>"evaluationGroup"</code>).
56      */

57     public static final String JavaDoc EVALUATION_GROUP= "evaluationGroup"; //$NON-NLS-1$
58

59     /**
60      * Status code indicating an unexpected internal error (value <code>150</code>).
61      */

62     public static final int INTERNAL_ERROR = 150;
63
64     /**
65      * Boolean preference indicating whether the monitor and thread information should be displayed in the debug view.
66      * A view may override this preference, and if so, stores its preference, prefixed by view id.
67      *
68      * @since 3.2
69      */

70     public static final String JavaDoc PREF_SHOW_MONITOR_THREAD_INFO = PLUGIN_ID + ".show_monitor_thread_info"; //$NON-NLS-1$
71

72     /**
73      * Boolean preference indicating whether system threads should appear visible in the debug view.
74      *
75      * @since 3.2
76      */

77     public static final String JavaDoc PREF_SHOW_SYSTEM_THREADS = PLUGIN_ID + ".show_system_threads"; //$NON-NLS-1$
78

79     /**
80      * Boolean preference indicating whether thread groups should be displayed in the debug view.
81      *
82      * @since 3.2
83      */

84     public static final String JavaDoc PREF_SHOW_THREAD_GROUPS = PLUGIN_ID + ".show_thread_group_info"; //$NON-NLS-1$
85

86     /**
87      * Integer preference for the maximum number of instances to show with the All Instances action
88      *
89      * @since 3.3
90      */

91     public static final String JavaDoc PREF_ALLINSTANCES_MAX_COUNT = PLUGIN_ID + ".all_instances_max_count"; //$NON-NLS-1$
92

93     /**
94      * Integer preference for the maximum number of references to show with the All References action
95      *
96      * @since 3.3
97      */

98     public static final String JavaDoc PREF_ALLREFERENCES_MAX_COUNT = PLUGIN_ID + ".all_references_max_count"; //$NON-NLS-1$
99

100 }
101
Popular Tags