KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > views > navigator > INavigatorHelpContextIds


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  * Sebastian Davids <sdavids@gmx.de> - Collapse all action (25826)
11  *******************************************************************************/

12 package org.eclipse.ui.views.navigator;
13
14 import org.eclipse.ui.PlatformUI;
15
16 /**
17  * Help context ids for the resource navigator view.
18  * <p>
19  * This interface contains constants only; it is not intended to be implemented
20  * or extended.
21  * </p>
22  *
23  */

24 /*package*/interface INavigatorHelpContextIds {
25     public static final String JavaDoc PREFIX = PlatformUI.PLUGIN_ID + "."; //$NON-NLS-1$
26

27     // Actions
28
public static final String JavaDoc FILTER_SELECTION_ACTION = PREFIX
29             + "filter_selection_action_context"; //$NON-NLS-1$
30

31     public static final String JavaDoc GOTO_RESOURCE_ACTION = PREFIX
32             + "goto_resource_action_context"; //$NON-NLS-1$
33

34     public static final String JavaDoc RESOURCE_NAVIGATOR_MOVE_ACTION = PREFIX
35             + "resource_navigator_move_action_context"; //$NON-NLS-1$
36

37     public static final String JavaDoc RESOURCE_NAVIGATOR_RENAME_ACTION = PREFIX
38             + "resource_navigator_rename_action_context"; //$NON-NLS-1$
39

40     public static final String JavaDoc SHOW_IN_NAVIGATOR_ACTION = PREFIX
41             + "show_in_navigator_action_context"; //$NON-NLS-1$
42

43     public static final String JavaDoc SORT_VIEW_ACTION = PREFIX
44             + "sort_view_action_context"; //$NON-NLS-1$
45

46     public static final String JavaDoc COPY_ACTION = PREFIX
47             + "resource_navigator_copy_action_context"; //$NON-NLS-1$
48

49     public static final String JavaDoc PASTE_ACTION = PREFIX
50             + "resource_navigator_paste_action_context"; //$NON-NLS-1$
51

52     public static final String JavaDoc COLLAPSE_ALL_ACTION = PREFIX
53             + "collapse_all_action_context"; //$NON-NLS-1$
54

55     // Dialogs
56
public static final String JavaDoc GOTO_RESOURCE_DIALOG = PREFIX
57             + "goto_resource_dialog_context"; //$NON-NLS-1$
58

59     // Views
60
public static final String JavaDoc RESOURCE_VIEW = PREFIX + "resource_view_context"; //$NON-NLS-1$
61
}
62
Popular Tags