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: *******************************************************************************/package org.eclipse.ui.views.bookmarkexplorer;
11:
12: import org.eclipse.ui.PlatformUI;
13:
14: /**
15: * Help context ids for the bookmark view.
16: * <p>
17: * This interface contains constants only; it is not intended to be implemented
18: * or extended.
19: * </p>
20: *
21: */
22: interface IBookmarkHelpContextIds {
23: public static final String PREFIX = PlatformUI.PLUGIN_ID + "."; //$NON-NLS-1$
24:
25: // Actions
26: public static final String COPY_BOOKMARK_ACTION = PREFIX
27: + "copy_bookmark_action_context"; //$NON-NLS-1$
28:
29: public static final String PASTE_BOOKMARK_ACTION = PREFIX
30: + "paste_bookmark_action_context"; //$NON-NLS-1$
31:
32: public static final String REMOVE_BOOKMARK_ACTION = PREFIX
33: + "remove_bookmark_action_context"; //$NON-NLS-1$
34:
35: public static final String OPEN_BOOKMARK_ACTION = PREFIX
36: + "open_bookmark_action_context"; //$NON-NLS-1$
37:
38: public static final String SELECT_ALL_BOOKMARK_ACTION = PREFIX
39: + "select_all_bookmark_action_context"; //$NON-NLS-1$
40:
41: public static final String BOOKMARK_PROPERTIES_ACTION = PREFIX
42: + "bookmark_properties_action_context"; //$NON-NLS-1$
43:
44: public static final String SORT_ASCENDING_ACTION = PREFIX
45: + "bookmark_sort_ascending_action_context"; //$NON-NLS-1$
46:
47: public static final String SORT_DESCENDING_ACTION = PREFIX
48: + "bookmark_sort_descending_action_context"; //$NON-NLS-1$
49:
50: public static final String SORT_DESCRIPTION_ACTION = PREFIX
51: + "bookmark_sort_description_action_context"; //$NON-NLS-1$
52:
53: public static final String SORT_RESOURCE_ACTION = PREFIX
54: + "bookmark_sort_resource_action_context"; //$NON-NLS-1$
55:
56: public static final String SORT_FOLDER_ACTION = PREFIX
57: + "bookmark_sort_folder_action_context"; //$NON-NLS-1$
58:
59: public static final String SORT_LOCATION_ACTION = PREFIX
60: + "bookmark_sort_location_action_context"; //$NON-NLS-1$
61:
62: public static final String SORT_CREATION_TIME_ACTION = PREFIX
63: + "bookmark_sort_creation_time_action_context"; //$NON-NLS-1$
64:
65: // Views
66: public static final String BOOKMARK_VIEW = PREFIX
67: + "bookmark_view_context"; //$NON-NLS-1$
68: }
|