01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: * Sebastian Davids <sdavids@gmx.de> - Collapse all action (25826)
11: *******************************************************************************/package org.eclipse.ui.views.navigator;
12:
13: import org.eclipse.ui.PlatformUI;
14:
15: /**
16: * Help context ids for the resource navigator view.
17: * <p>
18: * This interface contains constants only; it is not intended to be implemented
19: * or extended.
20: * </p>
21: *
22: */
23: /*package*/interface INavigatorHelpContextIds {
24: public static final String PREFIX = PlatformUI.PLUGIN_ID + "."; //$NON-NLS-1$
25:
26: // Actions
27: public static final String FILTER_SELECTION_ACTION = PREFIX
28: + "filter_selection_action_context"; //$NON-NLS-1$
29:
30: public static final String GOTO_RESOURCE_ACTION = PREFIX
31: + "goto_resource_action_context"; //$NON-NLS-1$
32:
33: public static final String RESOURCE_NAVIGATOR_MOVE_ACTION = PREFIX
34: + "resource_navigator_move_action_context"; //$NON-NLS-1$
35:
36: public static final String RESOURCE_NAVIGATOR_RENAME_ACTION = PREFIX
37: + "resource_navigator_rename_action_context"; //$NON-NLS-1$
38:
39: public static final String SHOW_IN_NAVIGATOR_ACTION = PREFIX
40: + "show_in_navigator_action_context"; //$NON-NLS-1$
41:
42: public static final String SORT_VIEW_ACTION = PREFIX
43: + "sort_view_action_context"; //$NON-NLS-1$
44:
45: public static final String COPY_ACTION = PREFIX
46: + "resource_navigator_copy_action_context"; //$NON-NLS-1$
47:
48: public static final String PASTE_ACTION = PREFIX
49: + "resource_navigator_paste_action_context"; //$NON-NLS-1$
50:
51: public static final String COLLAPSE_ALL_ACTION = PREFIX
52: + "collapse_all_action_context"; //$NON-NLS-1$
53:
54: // Dialogs
55: public static final String GOTO_RESOURCE_DIALOG = PREFIX
56: + "goto_resource_dialog_context"; //$NON-NLS-1$
57:
58: // Views
59: public static final String RESOURCE_VIEW = PREFIX
60: + "resource_view_context"; //$NON-NLS-1$
61: }
|