1 11 12 package org.eclipse.ui.views.bookmarkexplorer; 13 14 import org.eclipse.ui.PlatformUI; 15 16 24 interface IBookmarkHelpContextIds { 25 public static final String PREFIX = PlatformUI.PLUGIN_ID + "."; 27 public static final String COPY_BOOKMARK_ACTION = PREFIX 29 + "copy_bookmark_action_context"; 31 public static final String PASTE_BOOKMARK_ACTION = PREFIX 32 + "paste_bookmark_action_context"; 34 public static final String REMOVE_BOOKMARK_ACTION = PREFIX 35 + "remove_bookmark_action_context"; 37 public static final String OPEN_BOOKMARK_ACTION = PREFIX 38 + "open_bookmark_action_context"; 40 public static final String SELECT_ALL_BOOKMARK_ACTION = PREFIX 41 + "select_all_bookmark_action_context"; 43 public static final String BOOKMARK_PROPERTIES_ACTION = PREFIX 44 + "bookmark_properties_action_context"; 46 public static final String SORT_ASCENDING_ACTION = PREFIX 47 + "bookmark_sort_ascending_action_context"; 49 public static final String SORT_DESCENDING_ACTION = PREFIX 50 + "bookmark_sort_descending_action_context"; 52 public static final String SORT_DESCRIPTION_ACTION = PREFIX 53 + "bookmark_sort_description_action_context"; 55 public static final String SORT_RESOURCE_ACTION = PREFIX 56 + "bookmark_sort_resource_action_context"; 58 public static final String SORT_FOLDER_ACTION = PREFIX 59 + "bookmark_sort_folder_action_context"; 61 public static final String SORT_LOCATION_ACTION = PREFIX 62 + "bookmark_sort_location_action_context"; 64 public static final String SORT_CREATION_TIME_ACTION = PREFIX 65 + "bookmark_sort_creation_time_action_context"; 67 public static final String BOOKMARK_VIEW = PREFIX + "bookmark_view_context"; } 70 | Popular Tags |