KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > team > internal > ui > IHelpContextIds


1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 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 package org.eclipse.team.internal.ui;
12
13 public interface IHelpContextIds {
14     public static final String JavaDoc PREFIX = TeamUIPlugin.ID + "."; //$NON-NLS-1$
15

16     // Dialogs
17
public static final String JavaDoc SYNC_VIEW_PREFERENCE_DIALOG = PREFIX + "sync_view_preference_dialog_context"; //$NON-NLS-1$
18
public static final String JavaDoc CONFIGURE_REFRESH_SCHEDULE_DIALOG = PREFIX + "configre_refresh_schedule_dialog_context"; //$NON-NLS-1$
19

20     // Preference Pages
21
public static final String JavaDoc IGNORE_PREFERENCE_PAGE = PREFIX + "ignore_preference_page_context"; //$NON-NLS-1$
22
public static final String JavaDoc MODEL_PREFERENCE_PAGE = PREFIX + "model_preference_page_context"; //$NON-NLS-1$
23
public static final String JavaDoc FILE_TYPE_PREFERENCE_PAGE = PREFIX + "file_type_preference_page_context"; //$NON-NLS-1$
24
public static final String JavaDoc SYNC_PREFERENCE_PAGE = PREFIX + "sync_preference_page_context"; //$NON-NLS-1$
25

26     // Wizard Pages
27
public static final String JavaDoc SHARE_PROJECT_PAGE = PREFIX + "share_project_page_context"; //$NON-NLS-1$
28
public static final String JavaDoc IMPORT_PROJECT_SET_PAGE = PREFIX + "import_project_set_page_context"; //$NON-NLS-1$
29
public static final String JavaDoc EXPORT_PROJECT_SET_PAGE = PREFIX + "export_project_set_page_context"; //$NON-NLS-1$
30
public static final String JavaDoc SYNC_RESOURCE_SELECTION_PAGE = PREFIX + "sync_resource_selection_page_context"; //$NON-NLS-1$
31
public static final String JavaDoc REFRESH_WIZARD_SELECTION_PAGE = PREFIX + "refresh_wizard_selection_page_context"; //$NON-NLS-1$
32

33     // Catchup Release Viewers
34
public static final String JavaDoc TARGET_CATCHUP_RELEASE_VIEWER = PREFIX + "target_catchup_release_viewer_context"; //$NON-NLS-1$
35

36     // Target Actions
37
public static final String JavaDoc SYNC_GET_ACTION = PREFIX + "sync_get_action_context"; //$NON-NLS-1$
38
public static final String JavaDoc SYNC_PUT_ACTION = PREFIX + "sync_put_action_context"; //$NON-NLS-1$
39

40     // Views
41
public static final String JavaDoc SITE_EXPLORER_VIEW = PREFIX + "site_explorer_view_context"; //$NON-NLS-1$
42
public static final String JavaDoc SYNC_VIEW = PREFIX + "sync_view_context"; //$NON-NLS-1$
43
public static final String JavaDoc LOCAL_HISTORY_PAGE = PREFIX + "local_history_context"; //$NON-NLS-1$
44

45     // Site Explorer View Actions
46
public static final String JavaDoc ADD_SITE_ACTION = PREFIX + "add_site_action_context"; //$NON-NLS-1$
47
public static final String JavaDoc NEW_FOLDER_ACTION = PREFIX + "new_folder_action_context"; //$NON-NLS-1$
48

49     // Sync View Actions
50
public static final String JavaDoc OPEN_ACTION = PREFIX + "open_action_context"; //$NON-NLS-1$
51
public static final String JavaDoc EXPANDALL_ACTION = PREFIX + "expandall_action_context"; //$NON-NLS-1$
52
public static final String JavaDoc REMOVE_ACTION = PREFIX + "remove_action_context"; //$NON-NLS-1$
53
public static final String JavaDoc NAVIGATOR_SHOW_ACTION = PREFIX + "navigator_show_action_context"; //$NON-NLS-1$
54

55 }
56
Popular Tags