KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > views > tasklist > ITaskListHelpContextIds


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.tasklist;
13
14 import org.eclipse.ui.PlatformUI;
15
16 /**
17  * Help context ids for the task list 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 ITaskListHelpContextIds {
25     public static final String JavaDoc PREFIX = PlatformUI.PLUGIN_ID + "."; //$NON-NLS-1$
26

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

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

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

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

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

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

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

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

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

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

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

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

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

67     public static final String JavaDoc TASK_SORT_PRIORITY_ACTION = PREFIX
68             + "task_sort_priority_action_context"; //$NON-NLS-1$
69

70     public static final String JavaDoc TASK_SORT_DESCRIPTION_ACTION = PREFIX
71             + "task_sort_description_action_context"; //$NON-NLS-1$
72

73     public static final String JavaDoc TASK_SORT_RESOURCE_ACTION = PREFIX
74             + "task_sort_resource_action_context"; //$NON-NLS-1$
75

76     public static final String JavaDoc TASK_SORT_FOLDER_ACTION = PREFIX
77             + "task_sort_folder_action_context"; //$NON-NLS-1$
78

79     public static final String JavaDoc TASK_SORT_LOCATION_ACTION = PREFIX
80             + "task_sort_location_action_context"; //$NON-NLS-1$
81

82     public static final String JavaDoc TASK_SORT_CREATION_TIME_ACTION = PREFIX
83             + "task_sort_creation_time_action_context"; //$NON-NLS-1$
84

85     public static final String JavaDoc TASK_SORT_ASCENDING_ACTION = PREFIX
86             + "task_sort_ascending_action_context"; //$NON-NLS-1$
87

88     public static final String JavaDoc TASK_SORT_DESCENDING_ACTION = PREFIX
89             + "task_sort_descending_action_context"; //$NON-NLS-1$
90

91     // Dialogs
92
public static final String JavaDoc FILTERS_DIALOG = PREFIX
93             + "task_filters_dialog_context"; //$NON-NLS-1$
94

95     public static final String JavaDoc PROPERTIES_DIALOG = PREFIX
96             + "task_properties_dialog_context"; //$NON-NLS-1$
97

98     // Views
99
public static final String JavaDoc TASK_LIST_VIEW = PREFIX
100             + "task_list_view_context"; //$NON-NLS-1$
101
}
102
Popular Tags