Source Code Cross Referenced for IWorkbenchHelpContextIds.java in  » IDE-Eclipse » ui-workbench » org » eclipse » ui » internal » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Eclipse » ui workbench » org.eclipse.ui.internal 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*******************************************************************************
002:         * Copyright (c) 2000, 2006 IBM Corporation and others.
003:         * All rights reserved. This program and the accompanying materials
004:         * are made available under the terms of the Eclipse Public License v1.0
005:         * which accompanies this distribution, and is available at
006:         * http://www.eclipse.org/legal/epl-v10.html
007:         *
008:         * Contributors:
009:         *     IBM Corporation - initial API and implementation
010:         *     Sebastian Davids <sdavids@gmx.de> - Fix for bug 95292 - [Intro] 
011:         *     		Help > Welcome missing F1 context
012:         *******************************************************************************/package org.eclipse.ui.internal;
013:
014:        import org.eclipse.ui.PlatformUI;
015:
016:        /**
017:         * Help context ids for the workbench.
018:         * <p>
019:         * This interface contains constants only; it is not intended to be implemented
020:         * or extended.
021:         * </p>
022:         * 
023:         * @issue this class has been xcloned to org.eclipse.ui.internal.ide package; remove all IDE-specific constants from here
024:         */
025:        public interface IWorkbenchHelpContextIds {
026:            public static final String PREFIX = PlatformUI.PLUGIN_ID + "."; //$NON-NLS-1$
027:
028:            // Missing context help
029:            public static final String MISSING = PREFIX + "missing"; //$NON-NLS-1$
030:
031:            // Actions
032:
033:            public static final String DOCK_ON_PERSPECTIVE_ACTION = PREFIX
034:                    + "dock_on_perspective_action_context"; //$NON-NLS-1$
035:
036:            public static final String SHOW_TEXT_PERSPECTIVE_ACTION = PREFIX
037:                    + "show_text_perspective_action_context"; //$NON-NLS-1$
038:
039:            public static final String PROPERTY_DIALOG_ACTION = PREFIX
040:                    + "property_dialog_action_context"; //$NON-NLS-1$
041:
042:            public static final String NEW_ACTION = PREFIX
043:                    + "new_action_context"; //$NON-NLS-1$
044:
045:            public static final String IMPORT_ACTION = PREFIX
046:                    + "import_action_context"; //$NON-NLS-1$
047:
048:            public static final String EXPORT_ACTION = PREFIX
049:                    + "export_action_context"; //$NON-NLS-1$
050:
051:            public static final String SAVE_PERSPECTIVE_ACTION = PREFIX
052:                    + "save_perspective_action_context"; //$NON-NLS-1$
053:
054:            public static final String SAVE_AS_ACTION = PREFIX
055:                    + "save_as_action_context"; //$NON-NLS-1$
056:
057:            public static final String SAVE_ALL_ACTION = PREFIX
058:                    + "save_all_action_context"; //$NON-NLS-1$
059:
060:            public static final String SAVE_ACTION = PREFIX
061:                    + "save_action_context"; //$NON-NLS-1$
062:
063:            public static final String ABOUT_ACTION = PREFIX
064:                    + "about_action_context"; //$NON-NLS-1$
065:
066:            public static final String CLOSE_ALL_ACTION = PREFIX
067:                    + "close_all_action_context"; //$NON-NLS-1$
068:
069:            public static final String CLOSE_OTHERS_ACTION = PREFIX
070:                    + "close_others_action_context"; //$NON-NLS-1$
071:
072:            public static final String LOCK_TOOLBAR_ACTION = PREFIX
073:                    + "lock_toolbar_action_context"; //$NON-NLS-1$
074:
075:            public static final String CLOSE_PAGE_ACTION = PREFIX
076:                    + "close_page_action_context"; //$NON-NLS-1$
077:
078:            public static final String CLOSE_PART_ACTION = PREFIX
079:                    + "close_part_action_context"; //$NON-NLS-1$
080:
081:            public static final String EDIT_ACTION_SETS_ACTION = PREFIX
082:                    + "edit_action_sets_action_context"; //$NON-NLS-1$
083:
084:            public static final String DELETE_RETARGET_ACTION = PREFIX
085:                    + "delete_retarget_action_context"; //$NON-NLS-1$
086:
087:            public static final String CLOSE_ALL_PAGES_ACTION = PREFIX
088:                    + "close_all_pages_action_context"; //$NON-NLS-1$
089:
090:            public static final String OPEN_NEW_WINDOW_ACTION = PREFIX
091:                    + "open_new_window_action_context"; //$NON-NLS-1$
092:
093:            public static final String OPEN_PREFERENCES_ACTION = PREFIX
094:                    + "open_preferences_action_context"; //$NON-NLS-1$
095:
096:            public static final String QUIT_ACTION = PREFIX
097:                    + "quit_action_context"; //$NON-NLS-1$
098:
099:            public static final String RESET_PERSPECTIVE_ACTION = PREFIX
100:                    + "reset_perspective_action_context"; //$NON-NLS-1$
101:
102:            public static final String TOGGLE_EDITORS_VISIBILITY_ACTION = PREFIX
103:                    + "target_editors_visibility_action_context"; //$NON-NLS-1$
104:
105:            public static final String SHOW_VIEW_ACTION = PREFIX
106:                    + "show_view_action_context"; //$NON-NLS-1$
107:
108:            public static final String SHOW_VIEW_OTHER_ACTION = PREFIX
109:                    + "show_view_other_action_context"; //$NON-NLS-1$
110:
111:            public static final String OPEN_PERSPECTIVE_ACTION = PREFIX
112:                    + "open_perspective_action_context"; //$NON-NLS-1$
113:
114:            public static final String CLOSE_ALL_SAVED_ACTION = PREFIX
115:                    + "close_all_saved_action_context"; //$NON-NLS-1$
116:
117:            public static final String SHOW_VIEW_MENU_ACTION = PREFIX
118:                    + "show_view_menu_action_context"; //$NON-NLS-1$
119:
120:            public static final String WORKBENCH_EDITORS_ACTION = PREFIX
121:                    + "workbench_editors_action_context"; //$NON-NLS-1$
122:
123:            public static final String CELL_CUT_ACTION = PREFIX
124:                    + "cell_cut_action_context"; //$NON-NLS-1$
125:
126:            public static final String CELL_COPY_ACTION = PREFIX
127:                    + "cell_copy_action_context"; //$NON-NLS-1$
128:
129:            public static final String CELL_PASTE_ACTION = PREFIX
130:                    + "cell_paste_action_context"; //$NON-NLS-1$
131:
132:            public static final String CELL_DELETE_ACTION = PREFIX
133:                    + "cell_delete_action_context"; //$NON-NLS-1$
134:
135:            public static final String CELL_FIND_ACTION = PREFIX
136:                    + "cell_find_action_context"; //$NON-NLS-1$
137:
138:            public static final String CELL_SELECT_ALL_ACTION = PREFIX
139:                    + "cell_select_all_action_context"; //$NON-NLS-1$
140:
141:            public static final String CELL_UNDO_ACTION = PREFIX
142:                    + "cell_undo_action_context"; //$NON-NLS-1$
143:
144:            public static final String CELL_REDO_ACTION = PREFIX
145:                    + "cell_redo_action_context"; //$NON-NLS-1$
146:
147:            public static final String SHOW_PART_PANE_MENU_ACTION = PREFIX
148:                    + "show_part_pane_menu_action_context"; //$NON-NLS-1$
149:
150:            public static final String CYCLE_PART_FORWARD_ACTION = PREFIX
151:                    + "cycle_part_forward_action_context"; //$NON-NLS-1$
152:
153:            public static final String CYCLE_PART_BACKWARD_ACTION = PREFIX
154:                    + "cycle_part_backward_action_context"; //$NON-NLS-1$
155:
156:            public static final String CYCLE_EDITOR_FORWARD_ACTION = PREFIX
157:                    + "cycle_editor_forward_action_context"; //$NON-NLS-1$
158:
159:            public static final String CYCLE_EDITOR_BACKWARD_ACTION = PREFIX
160:                    + "cycle_editor_backward_action_context"; //$NON-NLS-1$
161:
162:            public static final String CYCLE_PERSPECTIVE_FORWARD_ACTION = PREFIX
163:                    + "cycle_perspective_forward_action_context"; //$NON-NLS-1$
164:
165:            public static final String CYCLE_PERSPECTIVE_BACKWARD_ACTION = PREFIX
166:                    + "cycle_perspective_backward_action_context"; //$NON-NLS-1$
167:
168:            public static final String ACTIVATE_EDITOR_ACTION = PREFIX
169:                    + "activate_editor_action_context"; //$NON-NLS-1$
170:
171:            public static final String MAXIMIZE_PART_ACTION = PREFIX
172:                    + "maximize_part_action_context"; //$NON-NLS-1$
173:
174:            public static final String MINIMIZE_PART_ACTION = PREFIX
175:                    + "minimize_part_action_context"; //$NON-NLS-1$
176:
177:            public static final String SELECT_WORKING_SET_ACTION = PREFIX
178:                    + "select_working_set_action_context"; //$NON-NLS-1$
179:
180:            public static final String CLEAR_WORKING_SET_ACTION = PREFIX
181:                    + "clear_working_set_action_context"; //$NON-NLS-1$
182:
183:            public static final String EDIT_WORKING_SET_ACTION = PREFIX
184:                    + "edit_working_set_action_context"; //$NON-NLS-1$
185:
186:            public static final String SHOW_IN_ACTION = PREFIX
187:                    + "show_in_action_context"; //$NON-NLS-1$
188:
189:            public static final String NAVIGATION_HISTORY_FORWARD = PREFIX
190:                    + "navigation_history_forward"; //$NON-NLS-1$
191:
192:            public static final String NAVIGATION_HISTORY_BACKWARD = PREFIX
193:                    + "navigation_history_backward"; //$NON-NLS-1$
194:
195:            public static final String HELP_CONTENTS_ACTION = PREFIX
196:                    + "help_contents_action_context"; //$NON-NLS-1$
197:
198:            public static final String HELP_SEARCH_ACTION = PREFIX
199:                    + "help_search_action_context"; //$NON-NLS-1$
200:
201:            public static final String DYNAMIC_HELP_ACTION = PREFIX
202:                    + "dynamic_help_action_context"; //$NON-NLS-1$
203:
204:            public static final String INTRO_ACTION = PREFIX
205:                    + "intro_action_context"; //$NON-NLS-1$
206:
207:            //    // Dialogs
208:            public static final String ABOUT_DIALOG = PREFIX
209:                    + "about_dialog_context"; //$NON-NLS-1$
210:
211:            public static final String ABOUT_PLUGINS_DIALOG = PREFIX
212:                    + "about_plugins_dialog_context"; //$NON-NLS-1$
213:
214:            public static final String ABOUT_FEATURES_PLUGINS_DIALOG = PREFIX
215:                    + "about_features_plugins_dialog_context"; //$NON-NLS-1$
216:
217:            public static final String ABOUT_FEATURES_DIALOG = PREFIX
218:                    + "about_features_dialog_context"; //$NON-NLS-1$
219:
220:            public static final String SYSTEM_SUMMARY_DIALOG = PREFIX
221:                    + "system_summary_dialog_context"; //$NON-NLS-1$
222:
223:            public static final String ACTION_SET_SELECTION_DIALOG = PREFIX
224:                    + "action_set_selection_dialog_context"; //$NON-NLS-1$
225:
226:            public static final String EDITOR_SELECTION_DIALOG = PREFIX
227:                    + "editor_selection_dialog_context"; //$NON-NLS-1$
228:
229:            public static final String FILE_EXTENSION_DIALOG = PREFIX
230:                    + "file_extension_dialog_context"; //$NON-NLS-1$
231:
232:            public static final String PREFERENCE_DIALOG = PREFIX
233:                    + "preference_dialog_context"; //$NON-NLS-1$
234:
235:            public static final String PROPERTY_DIALOG = PREFIX
236:                    + "property_dialog_context"; //$NON-NLS-1$
237:
238:            public static final String SAVE_PERSPECTIVE_DIALOG = PREFIX
239:                    + "save_perspective_dialog_context"; //$NON-NLS-1$
240:
241:            public static final String SELECT_PERSPECTIVE_DIALOG = PREFIX
242:                    + "select_perspective_dialog_context"; //$NON-NLS-1$
243:
244:            public static final String SHOW_VIEW_DIALOG = PREFIX
245:                    + "show_view_dialog_context"; //$NON-NLS-1$
246:
247:            public static final String TYPE_FILTERING_DIALOG = PREFIX
248:                    + "type_filtering_dialog_context"; //$NON-NLS-1$
249:
250:            public static final String LIST_SELECTION_DIALOG = PREFIX
251:                    + "list_selection_dialog_context"; //$NON-NLS-1$
252:
253:            public static final String YES_NO_CANCEL_LIST_SELECTION_DIALOG = PREFIX
254:                    + "yes_no_cancel_list_selection_dialog_context"; //$NON-NLS-1$
255:
256:            public static final String WORKING_SET_SELECTION_DIALOG = PREFIX
257:                    + "working_set_selection_dialog_context"; //$NON-NLS-1$
258:
259:            public static final String WORKBENCH_EDITORS_DIALOG = PREFIX
260:                    + "workbench_editors_dialog"; //$NON-NLS-1$
261:
262:            //    // Editors
263:            public static final String FILE_EDITORS_PREFERENCE_PAGE = PREFIX
264:                    + "file_editors_preference_page_context"; //$NON-NLS-1$
265:
266:            public static final String PERSPECTIVES_PREFERENCE_PAGE = PREFIX
267:                    + "perspectives_preference_page_context"; //$NON-NLS-1$
268:
269:            public static final String VIEWS_PREFERENCE_PAGE = PREFIX
270:                    + "views_preference_page_context"; //$NON-NLS-1$
271:
272:            public static final String FONTS_PREFERENCE_PAGE = PREFIX
273:                    + "font_preference_page_context"; //$NON-NLS-1$
274:
275:            public static final String KEYS_PREFERENCE_PAGE = PREFIX
276:                    + "keys_preference_page_context"; //$NON-NLS-1$
277:
278:            public static final String WORKBENCH_EDITOR_PREFERENCE_PAGE = PREFIX
279:                    + "workbench_editor_preference_page_context"; //$NON-NLS-1$
280:
281:            public static final String CONTENT_TYPES_PREFERENCE_PAGE = PREFIX
282:                    + "content_types_preference_page_context"; //$NON-NLS-1$
283:
284:            public static final String WORKBENCH_PREFERENCE_PAGE = PREFIX
285:                    + "workbench_preference_page_context"; //$NON-NLS-1$
286:
287:            public static final String DECORATORS_PREFERENCE_PAGE = PREFIX
288:                    + "decorators_preference_page_context"; //$NON-NLS-1$
289:
290:            public static final String STARTUP_PREFERENCE_PAGE = PREFIX
291:                    + "startup_preference_page_context"; //$NON-NLS-1$
292:
293:            public static final String RESPONSIVE_UI = PREFIX
294:                    + "responsive_ui_context"; //$NON-NLS-1$
295:
296:            //    // Windows
297:            public static final String DETACHED_WINDOW = PREFIX
298:                    + "detached_window_context"; //$NON-NLS-1$
299:
300:            public static final String WORKBENCH_WINDOW = PREFIX
301:                    + "workbench_window_context"; //$NON-NLS-1$
302:
303:            //    // Wizard pages
304:
305:            public static final String NEW_WIZARD_SELECTION_WIZARD_PAGE = PREFIX
306:                    + "new_wizard_selection_wizard_page_context"; //$NON-NLS-1$
307:
308:            public static final String EXPORT_WIZARD_SELECTION_WIZARD_PAGE = PREFIX
309:                    + "export_wizard_selection_wizard_page_context"; //$NON-NLS-1$
310:
311:            public static final String IMPORT_WIZARD_SELECTION_WIZARD_PAGE = PREFIX
312:                    + "import_wizard_selection_wizard_page_context"; //$NON-NLS-1$
313:
314:            public static final String WORKING_SET_TYPE_PAGE = PREFIX
315:                    + "working_set_type_page"; //$NON-NLS-1$	
316:
317:            // Wizards
318:            public static final String NEW_WIZARD = PREFIX
319:                    + "new_wizard_context"; //$NON-NLS-1$
320:
321:            public static final String NEW_WIZARD_SHORTCUT = PREFIX
322:                    + "new_wizard_shortcut_context"; //$NON-NLS-1$
323:
324:            public static final String IMPORT_WIZARD = PREFIX
325:                    + "import_wizard_context"; //$NON-NLS-1$
326:
327:            public static final String EXPORT_WIZARD = PREFIX
328:                    + "export_wizard_context"; //$NON-NLS-1$
329:
330:            public static final String WORKING_SET_NEW_WIZARD = PREFIX
331:                    + "working_set_new_wizard_context"; //$NON-NLS-1$	
332:
333:            public static final String WORKING_SET_EDIT_WIZARD = PREFIX
334:                    + "working_set_edit_wizard_context"; //$NON-NLS-1$	
335:
336:            public static final String CAPABILITY_PREFERENCE_PAGE = PREFIX
337:                    + "capabilities_preference_page_context"; //$NON-NLS-1$
338:            public static final String TOGGLE_COOLBAR_ACTION = PREFIX
339:                    + "toggle_coolbar_action"; //$NON-NLS-1$
340:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.