1 /*******************************************************************************
2  * Copyright (c) 2000, 2015 IBM Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *   IBM Corporation - initial API and implementation
13  *   Sebastian Davids <sdavids@gmx.de> - Collapse all action (25826)
14  *******************************************************************************/
15 package org.eclipse.ui.views.navigator;
16 
17 import org.eclipse.ui.PlatformUI;
18 
19 /**
20  * Help context ids for the resource navigator view.
21  * <p>
22  * This interface contains constants only; it is not intended to be implemented
23  * or extended.
24  * </p>
25  *
26  * @noextend This interface is not intended to be extended by clients.
27  * @noimplement This interface is not intended to be implemented by clients.
28  * @noreference This class is not intended to be referenced by clients.
29  *
30  *              Planned to be deleted, please see Bug
31  *              https://bugs.eclipse.org/bugs/show_bug.cgi?id=549953
32  *
33  */
34 /* package */interface INavigatorHelpContextIds {
35 	public static final String PREFIX = PlatformUI.PLUGIN_ID + "."; //$NON-NLS-1$
36 
37 	// Actions
38 	public static final String FILTER_SELECTION_ACTION = PREFIX + "filter_selection_action_context"; //$NON-NLS-1$
39 
40 	public static final String GOTO_RESOURCE_ACTION = PREFIX + "goto_resource_action_context"; //$NON-NLS-1$
41 
42 	public static final String RESOURCE_NAVIGATOR_MOVE_ACTION = PREFIX + "resource_navigator_move_action_context"; //$NON-NLS-1$
43 
44 	public static final String RESOURCE_NAVIGATOR_RENAME_ACTION = PREFIX + "resource_navigator_rename_action_context"; //$NON-NLS-1$
45 
46 	public static final String SHOW_IN_NAVIGATOR_ACTION = PREFIX + "show_in_navigator_action_context"; //$NON-NLS-1$
47 
48 	public static final String SORT_VIEW_ACTION = PREFIX + "sort_view_action_context"; //$NON-NLS-1$
49 
50 	public static final String COPY_ACTION = PREFIX + "resource_navigator_copy_action_context"; //$NON-NLS-1$
51 
52 	public static final String PASTE_ACTION = PREFIX + "resource_navigator_paste_action_context"; //$NON-NLS-1$
53 
54 	public static final String COLLAPSE_ALL_ACTION = PREFIX + "collapse_all_action_context"; //$NON-NLS-1$
55 
56 	// Dialogs
57 	public static final String GOTO_RESOURCE_DIALOG = PREFIX + "goto_resource_dialog_context"; //$NON-NLS-1$
58 
59 	// Views
60 	public static final String RESOURCE_VIEW = PREFIX + "resource_view_context"; //$NON-NLS-1$
61 }
62