KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > views > bookmarkexplorer > IBookmarkHelpContextIds


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

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

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

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

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

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

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

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

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

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

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

55     public static final String JavaDoc SORT_RESOURCE_ACTION = PREFIX
56             + "bookmark_sort_resource_action_context"; //$NON-NLS-1$
57

58     public static final String JavaDoc SORT_FOLDER_ACTION = PREFIX
59             + "bookmark_sort_folder_action_context"; //$NON-NLS-1$
60

61     public static final String JavaDoc SORT_LOCATION_ACTION = PREFIX
62             + "bookmark_sort_location_action_context"; //$NON-NLS-1$
63

64     public static final String JavaDoc SORT_CREATION_TIME_ACTION = PREFIX
65             + "bookmark_sort_creation_time_action_context"; //$NON-NLS-1$
66

67     // Views
68
public static final String JavaDoc BOOKMARK_VIEW = PREFIX + "bookmark_view_context"; //$NON-NLS-1$
69
}
70
Popular Tags