Source Code Cross Referenced for ITextEditorActionDefinitionIds.java in  » IDE-Eclipse » ui-workbench » org » eclipse » ui » texteditor » 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.texteditor 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*******************************************************************************
002:         * Copyright (c) 2000, 2007 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:         *     Chris.Dennis@invidi.com - http://bugs.eclipse.org/bugs/show_bug.cgi?id=29027
011:         *     Genady Beryozkin, me@genady.org - https://bugs.eclipse.org/bugs/show_bug.cgi?id=11668
012:         *     Benjamin Muskalla <b.muskalla@gmx.net> - https://bugs.eclipse.org/bugs/show_bug.cgi?id=41573
013:         *******************************************************************************/package org.eclipse.ui.texteditor;
014:
015:        import org.eclipse.jface.text.information.IInformationProvider;
016:
017:        /**
018:         * Defines the definitions ids for the text editor actions. These actions are
019:         * navigation, selection, and modification actions.
020:         * @since 2.0
021:         */
022:        public interface ITextEditorActionDefinitionIds extends
023:                IWorkbenchActionDefinitionIds {
024:
025:            // edit
026:
027:            /**
028:             * Action definition id of the edit delete line action.
029:             * Value: <code>"org.eclipse.ui.edit.text.delete.line"</code>
030:             */
031:            String DELETE_LINE = "org.eclipse.ui.edit.text.delete.line"; //$NON-NLS-1$
032:
033:            /**
034:             * Action definition id of the edit join lines action.
035:             * Value: <code>"org.eclipse.ui.edit.text.join.line"</code>
036:             * @since 3.3
037:             */
038:            String JOIN_LINES = "org.eclipse.ui.edit.text.join.lines"; //$NON-NLS-1$
039:
040:            /**
041:             * Action definition id of the edit cut line action.
042:             * Value: <code>"org.eclipse.ui.edit.text.cut.line"</code>
043:             * @since 2.1
044:             */
045:            String CUT_LINE = "org.eclipse.ui.edit.text.cut.line"; //$NON-NLS-1$
046:
047:            /**
048:             * Action definition id of the edit delete line to beginning action.
049:             * Value: <code>"org.eclipse.ui.edit.text.delete.line.to.beginning"</code>
050:             */
051:            String DELETE_LINE_TO_BEGINNING = "org.eclipse.ui.edit.text.delete.line.to.beginning"; //$NON-NLS-1$
052:
053:            /**
054:             * Action definition id of the edit cut line to beginning action.
055:             * Value: <code>"org.eclipse.ui.edit.text.cut.line.to.beginning"</code>
056:             * @since 2.1
057:             */
058:            String CUT_LINE_TO_BEGINNING = "org.eclipse.ui.edit.text.cut.line.to.beginning"; //$NON-NLS-1$
059:
060:            /**
061:             * Action definition id of the edit delete line to end action.
062:             * Value: <code>"org.eclipse.ui.edit.text.delete.line.to.end"</code>
063:             */
064:            String DELETE_LINE_TO_END = "org.eclipse.ui.edit.text.delete.line.to.end"; //$NON-NLS-1$
065:
066:            /**
067:             * Action definition id of the edit cut line to end action.
068:             * Value: <code>"org.eclipse.ui.edit.text.cut.line.to.end"</code>
069:             * @since 2.1
070:             */
071:            String CUT_LINE_TO_END = "org.eclipse.ui.edit.text.cut.line.to.end"; //$NON-NLS-1$
072:
073:            /**
074:             * Action definition id of the edit set mark action.
075:             * Value: <code>"org.eclipse.ui.edit.text.set.mark"</code>
076:             */
077:            String SET_MARK = "org.eclipse.ui.edit.text.set.mark"; //$NON-NLS-1$
078:
079:            /**
080:             * Action definition id of the edit clear mark action.
081:             * Value: <code>"org.eclipse.ui.edit.text.clear.mark"</code>
082:             */
083:            String CLEAR_MARK = "org.eclipse.ui.edit.text.clear.mark"; //$NON-NLS-1$
084:
085:            /**
086:             * Action definition id of the edit swap mark action.
087:             * Value: <code>"org.eclipse.ui.edit.text.swap.mark"</code>
088:             */
089:            String SWAP_MARK = "org.eclipse.ui.edit.text.swap.mark"; //$NON-NLS-1$
090:
091:            /**
092:             * Action definition id of the smart enter action.
093:             * Value: <code>"org.eclipse.ui.edit.text.smartEnter"</code>
094:             * @since 3.0
095:             */
096:            String SMART_ENTER = "org.eclipse.ui.edit.text.smartEnter"; //$NON-NLS-1$
097:
098:            /**
099:             * Action definition id of the smart enter (inverse) action.
100:             * Value: <code>"org.eclipse.ui.edit.text.smartEnterInverse"</code>
101:             * @since 3.0
102:             */
103:            String SMART_ENTER_INVERSE = "org.eclipse.ui.edit.text.smartEnterInverse"; //$NON-NLS-1$
104:
105:            /**
106:             * Action definition id of the move lines upwards action.
107:             * Value: <code>"org.eclipse.ui.edit.text.moveLineUp"</code>
108:             * @since 3.0
109:             */
110:            String MOVE_LINES_UP = "org.eclipse.ui.edit.text.moveLineUp"; //$NON-NLS-1$
111:
112:            /**
113:             * Action definition id of the move lines downwards action.
114:             * Value: <code>"org.eclipse.ui.edit.text.moveLineDown"</code>
115:             * @since 3.0
116:             */
117:            String MOVE_LINES_DOWN = "org.eclipse.ui.edit.text.moveLineDown"; //$NON-NLS-1$
118:
119:            /**
120:             * Action definition id of the copy lines upwards action.
121:             * Value: <code>"org.eclipse.ui.edit.text.copyLineUp"</code>
122:             * @since 3.0
123:             */
124:            String COPY_LINES_UP = "org.eclipse.ui.edit.text.copyLineUp"; //$NON-NLS-1$;
125:
126:            /**
127:             * Action definition id of the copy lines downwards action.
128:             * Value: <code>"org.eclipse.ui.edit.text.copyLineDown"</code>
129:             * @since 3.0
130:             */
131:            String COPY_LINES_DOWN = "org.eclipse.ui.edit.text.copyLineDown"; //$NON-NLS-1$;
132:
133:            /**
134:             * Action definition id of the upper case action.
135:             * Value: <code>"org.eclipse.ui.edit.text.upperCase"</code>
136:             * @since 3.0
137:             */
138:            String UPPER_CASE = "org.eclipse.ui.edit.text.upperCase"; //$NON-NLS-1$
139:
140:            /**
141:             * Action definition id of the lower case action.
142:             * Value: <code>"org.eclipse.ui.edit.text.lowerCase"</code>
143:             * @since 3.0
144:             */
145:            String LOWER_CASE = "org.eclipse.ui.edit.text.lowerCase"; //$NON-NLS-1$
146:
147:            // navigation
148:
149:            /**
150:             * Action definition id of the navigate goto previous line action.
151:             * Value: <code>"org.eclipse.ui.edit.text.goto.lineUp"</code>
152:             */
153:            String LINE_UP = "org.eclipse.ui.edit.text.goto.lineUp"; //$NON-NLS-1$
154:
155:            /**
156:             * Action definition id of the navigate goto next line action.
157:             * Value: <code>"org.eclipse.ui.edit.text.goto.lineDown"</code>
158:             */
159:            String LINE_DOWN = "org.eclipse.ui.edit.text.goto.lineDown"; //$NON-NLS-1$
160:
161:            /**
162:             * Action definition id of the navigate goto line start action.
163:             * Value: <code>"org.eclipse.ui.edit.text.goto.lineStart"</code>
164:             */
165:            String LINE_START = "org.eclipse.ui.edit.text.goto.lineStart"; //$NON-NLS-1$
166:
167:            /**
168:             * Action definition id of the navigate goto line end action.
169:             * Value: <code>"org.eclipse.ui.edit.text.goto.lineEnd"</code>
170:             */
171:            String LINE_END = "org.eclipse.ui.edit.text.goto.lineEnd"; //$NON-NLS-1$
172:
173:            /**
174:             * Action definition id of the navigate goto line action.
175:             * Value: <code>"org.eclipse.ui.edit.text.goto.line"</code>
176:             */
177:            String LINE_GOTO = "org.eclipse.ui.edit.text.goto.line"; //$NON-NLS-1$
178:
179:            /**
180:             * Action definition id of the navigate goto previous column action.
181:             * Value: <code>"org.eclipse.ui.edit.text.goto.columnPrevious"</code>
182:             */
183:            String COLUMN_PREVIOUS = "org.eclipse.ui.edit.text.goto.columnPrevious"; //$NON-NLS-1$
184:
185:            /**
186:             * Action definition id of the navigate goto next column action.
187:             * Value: <code>"org.eclipse.ui.edit.text.goto.columnNext"</code>
188:             */
189:            String COLUMN_NEXT = "org.eclipse.ui.edit.text.goto.columnNext"; //$NON-NLS-1$
190:
191:            /**
192:             * Action definition id of the navigate goto previous page action.
193:             * Value: <code>"org.eclipse.ui.edit.text.goto.pageUp"</code>
194:             */
195:            String PAGE_UP = "org.eclipse.ui.edit.text.goto.pageUp"; //$NON-NLS-1$
196:
197:            /**
198:             * Action definition id of the navigate goto next page action.
199:             * Value: <code>"org.eclipse.ui.edit.text.goto.pageDown"</code>
200:             */
201:            String PAGE_DOWN = "org.eclipse.ui.edit.text.goto.pageDown"; //$NON-NLS-1$
202:
203:            /**
204:             * Action definition id of the navigate goto previous word action.
205:             * Value: <code>"org.eclipse.ui.edit.text.goto.wordPrevious"</code>
206:             */
207:            String WORD_PREVIOUS = "org.eclipse.ui.edit.text.goto.wordPrevious"; //$NON-NLS-1$
208:
209:            /**
210:             * Action definition id of the navigate goto next word action.
211:             * Value: <code>"org.eclipse.ui.edit.text.goto.wordNext"</code>
212:             */
213:            String WORD_NEXT = "org.eclipse.ui.edit.text.goto.wordNext"; //$NON-NLS-1$
214:
215:            /**
216:             * Action definition id of the navigate goto text start action.
217:             * Value: <code>"org.eclipse.ui.edit.text.goto.textStart"</code>
218:             */
219:            String TEXT_START = "org.eclipse.ui.edit.text.goto.textStart"; //$NON-NLS-1$
220:
221:            /**
222:             * Action definition id of the navigate goto text end action.
223:             * Value: <code>"org.eclipse.ui.edit.text.goto.textEnd"</code>
224:             */
225:            String TEXT_END = "org.eclipse.ui.edit.text.goto.textEnd"; //$NON-NLS-1$
226:
227:            /**
228:             * Action definition id of the navigate goto start of window action.
229:             * Value: <code>"org.eclipse.ui.edit.text.goto.windowStart"</code>
230:             */
231:            String WINDOW_START = "org.eclipse.ui.edit.text.goto.windowStart"; //$NON-NLS-1$
232:
233:            /**
234:             * Action definition id of the navigate goto end of window action.
235:             * Value: <code>"org.eclipse.ui.edit.text.goto.windowEnd"</code>
236:             */
237:            String WINDOW_END = "org.eclipse.ui.edit.text.goto.windowEnd"; //$NON-NLS-1$
238:
239:            /**
240:             * Action definition id of the navigate scroll line up action.
241:             * Value: <code>"org.eclipse.ui.edit.text.scroll.lineUp"</code>
242:             */
243:            String SCROLL_LINE_UP = "org.eclipse.ui.edit.text.scroll.lineUp"; //$NON-NLS-1$
244:
245:            /**
246:             * Action definition id of the navigate scroll line down action.
247:             * Value: <code>"org.eclipse.ui.edit.text.scroll.lineDown"</code>
248:             */
249:            String SCROLL_LINE_DOWN = "org.eclipse.ui.edit.text.scroll.lineDown"; //$NON-NLS-1$
250:
251:            // selection
252:
253:            /**
254:             * Action definition id of the select line up action.
255:             * Value: <code>"org.eclipse.ui.edit.text.select.lineUp"</code>
256:             */
257:            String SELECT_LINE_UP = "org.eclipse.ui.edit.text.select.lineUp"; //$NON-NLS-1$
258:
259:            /**
260:             * Action definition id of the select line down action.
261:             * Value: <code>"org.eclipse.ui.edit.text.select.lineDown"</code>
262:             */
263:            String SELECT_LINE_DOWN = "org.eclipse.ui.edit.text.select.lineDown"; //$NON-NLS-1$
264:
265:            /**
266:             * Action definition id of the select line start action.
267:             * Value: <code>"org.eclipse.ui.edit.text.select.lineStart"</code>
268:             */
269:            String SELECT_LINE_START = "org.eclipse.ui.edit.text.select.lineStart"; //$NON-NLS-1$
270:
271:            /**
272:             * Action definition id of the select line end action.
273:             * Value: <code>"org.eclipse.ui.edit.text.select.lineEnd"</code>
274:             */
275:            String SELECT_LINE_END = "org.eclipse.ui.edit.text.select.lineEnd"; //$NON-NLS-1$
276:
277:            /**
278:             * Action definition id of the select previous column action.
279:             * Value: <code>"org.eclipse.ui.edit.text.select.columnPrevious"</code>
280:             */
281:            String SELECT_COLUMN_PREVIOUS = "org.eclipse.ui.edit.text.select.columnPrevious"; //$NON-NLS-1$
282:
283:            /**
284:             * Action definition id of the select next column action.
285:             * Value: <code>"org.eclipse.ui.edit.text.select.columnNext"</code>
286:             */
287:            String SELECT_COLUMN_NEXT = "org.eclipse.ui.edit.text.select.columnNext"; //$NON-NLS-1$
288:
289:            /**
290:             * Action definition id of the select page up action.
291:             * Value: <code>"org.eclipse.ui.edit.text.select.pageUp"</code>
292:             */
293:            String SELECT_PAGE_UP = "org.eclipse.ui.edit.text.select.pageUp"; //$NON-NLS-1$
294:
295:            /**
296:             * Action definition id of the select page down action.
297:             * Value: <code>"org.eclipse.ui.edit.text.select.pageDown"</code>
298:             */
299:            String SELECT_PAGE_DOWN = "org.eclipse.ui.edit.text.select.pageDown"; //$NON-NLS-1$
300:
301:            /**
302:             * Action definition id of the select previous word action.
303:             * Value: <code>"org.eclipse.ui.edit.text.select.wordPrevious"</code>
304:             */
305:            String SELECT_WORD_PREVIOUS = "org.eclipse.ui.edit.text.select.wordPrevious"; //$NON-NLS-1$
306:
307:            /**
308:             * Action definition id of the select next word action.
309:             * Value: <code>"org.eclipse.ui.edit.text.select.wordNext"</code>
310:             */
311:            String SELECT_WORD_NEXT = "org.eclipse.ui.edit.text.select.wordNext"; //$NON-NLS-1$
312:
313:            /**
314:             * Action definition id of the select text start action.
315:             * Value: <code>"org.eclipse.ui.edit.text.select.textStart"</code>
316:             */
317:            String SELECT_TEXT_START = "org.eclipse.ui.edit.text.select.textStart"; //$NON-NLS-1$
318:
319:            /**
320:             * Action definition id of the select text end action.
321:             * Value: <code>"org.eclipse.ui.edit.text.select.textEnd"</code>
322:             */
323:            String SELECT_TEXT_END = "org.eclipse.ui.edit.text.select.textEnd"; //$NON-NLS-1$
324:
325:            /**
326:             * Action definition id of the select window start action.
327:             * Value: <code>"org.eclipse.ui.edit.text.select.windowStart"</code>
328:             */
329:            String SELECT_WINDOW_START = "org.eclipse.ui.edit.text.select.windowStart"; //$NON-NLS-1$
330:
331:            /**
332:             * Action definition id of the select window end action.
333:             * Value: <code>"org.eclipse.ui.edit.text.select.windowEnd"</code>
334:             */
335:            String SELECT_WINDOW_END = "org.eclipse.ui.edit.text.select.windowEnd"; //$NON-NLS-1$
336:
337:            // modification
338:
339:            /**
340:             * Action definition id of the edit delete previous character action.
341:             * Value: <code>"org.eclipse.ui.edit.text.deletePrevious"</code>
342:             */
343:            String DELETE_PREVIOUS = "org.eclipse.ui.edit.text.deletePrevious"; //$NON-NLS-1$
344:
345:            /**
346:             * Action definition id of the edit delete next character action.
347:             * Value: <code>"org.eclipse.ui.edit.text.deleteNext"</code>
348:             */
349:            String DELETE_NEXT = "org.eclipse.ui.edit.text.deleteNext"; //$NON-NLS-1$
350:
351:            /**
352:             * Action definition id of the edit delete previous word action.
353:             * Value: <code>"org.eclipse.ui.edit.text.deletePreviousWord"</code>
354:             * @since 2.1
355:             */
356:            String DELETE_PREVIOUS_WORD = "org.eclipse.ui.edit.text.deletePreviousWord"; //$NON-NLS-1$
357:
358:            /**
359:             * Action definition id of the edit delete next word action.
360:             * Value: <code>"org.eclipse.ui.edit.text.deleteNextWord"</code>
361:             * @since 2.1
362:             */
363:            String DELETE_NEXT_WORD = "org.eclipse.ui.edit.text.deleteNextWord"; //$NON-NLS-1$
364:
365:            /**
366:             * Action definition id of the edit shift right action.
367:             * Value: <code>"org.eclipse.ui.edit.text.shiftRight"</code>
368:             */
369:            String SHIFT_RIGHT = "org.eclipse.ui.edit.text.shiftRight"; //$NON-NLS-1$
370:
371:            /**
372:             * Action definition id of the edit shift left action.
373:             * Value: <code>"org.eclipse.ui.edit.text.shiftLeft"</code>
374:             */
375:            String SHIFT_LEFT = "org.eclipse.ui.edit.text.shiftLeft"; //$NON-NLS-1$
376:
377:            /**
378:             * Action definition id of the edit convert to window's line delimiter action.
379:             * Value: <code>"org.eclipse.ui.edit.text.convert.lineDelimiters.toWindows"</code>
380:             * @deprecated since 3.1. No longer supported as editor actions.
381:             */
382:            String CONVERT_LINE_DELIMITERS_TO_WINDOWS = "org.eclipse.ui.edit.text.convert.lineDelimiters.toWindows"; //$NON-NLS-1$
383:
384:            /**
385:             * Action definition id of the edit convert to Unix line delimiter action.
386:             * Value: <code>"org.eclipse.ui.edit.text.convert.lineDelimiters.toUNIX"</code>
387:             * @deprecated since 3.1. No longer supported as editor actions.
388:             */
389:            String CONVERT_LINE_DELIMITERS_TO_UNIX = "org.eclipse.ui.edit.text.convert.lineDelimiters.toUNIX"; //$NON-NLS-1$
390:
391:            /**
392:             * Action definition id of the edit convert to Mac line delimiter action.
393:             * Value: <code>"org.eclipse.ui.edit.text.convert.lineDelimiters.toMac"</code>
394:             * @deprecated since 3.1. No longer supported as editor actions.
395:             */
396:            String CONVERT_LINE_DELIMITERS_TO_MAC = "org.eclipse.ui.edit.text.convert.lineDelimiters.toMac"; //$NON-NLS-1$
397:
398:            // miscellaneous
399:
400:            /**
401:             * Action definition id of the toggle input mode action.
402:             * Value: <code>"org.eclipse.ui.edit.text.toggleOverwrite"</code>
403:             */
404:            String TOGGLE_OVERWRITE = "org.eclipse.ui.edit.text.toggleOverwrite"; //$NON-NLS-1$
405:
406:            /**
407:             * Action definition id of toggle show selected element only action.
408:             * Value: <code>"org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"</code>
409:             * @since 3.0
410:             */
411:            String TOGGLE_SHOW_SELECTED_ELEMENT_ONLY = "org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"; //$NON-NLS-1$
412:
413:            /**
414:             * Action definition id of the show ruler context menu action.
415:             * Value: <code>"org.eclipse.ui.edit.text.showRulerContextMenu"</code>
416:             */
417:            String SHOW_RULER_CONTEXT_MENU = "org.eclipse.ui.edit.text.showRulerContextMenu"; //$NON-NLS-1$
418:
419:            /**
420:             * Action definition id of go to last edit position action.
421:             * Value: <code>"org.eclipse.ui.edit.text.gotoLastEditPosition"</code>
422:             * @since 2.1
423:             */
424:            String GOTO_LAST_EDIT_POSITION = "org.eclipse.ui.edit.text.gotoLastEditPosition"; //$NON-NLS-1$
425:
426:            /**
427:             * Action definition id of go to next annotation action.
428:             * Value: <code>"org.eclipse.ui.edit.text.gotoNextAnnotation"</code>
429:             * @since 3.0
430:             */
431:            String GOTO_NEXT_ANNOTATION = "org.eclipse.ui.edit.text.gotoNextAnnotation"; //$NON-NLS-1$
432:
433:            /**
434:             * Action definition id of go to previous annotation action.
435:             * Value: <code>"org.eclipse.ui.edit.text.gotoPreviousAnnotation"</code>
436:             * @since 3.0
437:             */
438:            String GOTO_PREVIOUS_ANNOTATION = "org.eclipse.ui.edit.text.gotoPreviousAnnotation"; //$NON-NLS-1$
439:
440:            /**
441:             * Action definition ID of the edit -> content assist proposal action
442:             * Value: <code>"org.eclipse.ui.edit.text.contentAssist.proposals"</code>).
443:             * <p>
444:             * Note: Since 3.2 the command is defined in <code>org.eclipse.ui</code> and
445:             * its ID can also be accessed using {@link org.eclipse.ui.fieldassist.ContentAssistCommandAdapter#CONTENT_PROPOSAL_COMMAND}.
446:             * </p>
447:             * @since 2.1
448:             */
449:            String CONTENT_ASSIST_PROPOSALS = "org.eclipse.ui.edit.text.contentAssist.proposals"; //$NON-NLS-1$
450:
451:            /**
452:             * Action definition ID of the edit -> content assist context information action
453:             * Value: <code>"org.eclipse.ui.edit.text.contentAssist.contextInformation"</code>).
454:             * @since 2.1
455:             */
456:            String CONTENT_ASSIST_CONTEXT_INFORMATION = "org.eclipse.ui.edit.text.contentAssist.contextInformation"; //$NON-NLS-1$
457:
458:            /**
459:             * Action definition ID of the edit -> quick assist proposal action
460:             * <p>
461:             * Note: The constant contains 'jdt' for historical and compatibility reasons.
462:             * </p>
463:             * (value <code>"org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals"</code>).
464:             * @since 3.2
465:             */
466:            String QUICK_ASSIST = "org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals"; //$NON-NLS-1$
467:
468:            /**
469:             * Action definition ID of the edit -> smart insert mode action
470:             * Value: <code>"org.eclipse.ui.edit.text.toggleInsertMode"</code>).
471:             * @since 3.0
472:             */
473:            String TOGGLE_INSERT_MODE = "org.eclipse.ui.edit.text.toggleInsertMode"; //$NON-NLS-1$
474:
475:            /**
476:             * Value: <code>"org.eclipse.ui.edit.text.changeEncoding"</code>).
477:             * @since 3.1
478:             */
479:            String CHANGE_ENCODING = "org.eclipse.ui.edit.text.changeEncoding"; //$NON-NLS-1$
480:
481:            /**
482:             * Command ID of the revert line action
483:             * Value: <code>"org.eclipse.ui.editors.quickdiff.revertLine"</code>).
484:             * @since 3.1
485:             */
486:            String QUICKDIFF_REVERTLINE = "org.eclipse.ui.editors.quickdiff.revertLine"; //$NON-NLS-1$
487:
488:            /**
489:             * Command ID of the revert selection/block action
490:             * Value: <code>"org.eclipse.ui.editors.quickdiff.revert"</code>).
491:             * @since 3.1
492:             */
493:            String QUICKDIFF_REVERT = "org.eclipse.ui.editors.quickdiff.revert"; //$NON-NLS-1$
494:
495:            /**
496:             * Command ID of the toggle quick diff action. The name has no proper prefix for
497:             * historical reasons.
498:             * Value: <code>"org.eclipse.quickdiff.toggle"</code>).
499:             * @since 3.1
500:             */
501:            String QUICKDIFF_TOGGLE = "org.eclipse.quickdiff.toggle"; //$NON-NLS-1$
502:
503:            /**
504:             * Command ID of the toggle display of line numbers
505:             * Value: <code>"org.eclipse.ui.editors.lineNumberToggle"</code>).
506:             * @since 3.1
507:             */
508:            String LINENUMBER_TOGGLE = "org.eclipse.ui.editors.lineNumberToggle"; //$NON-NLS-1$
509:
510:            /**
511:             * Action definition ID of the edit -> text complete action
512:             * Value: <code>"org.eclipse.ui.edit.text.hippieCompletion"</code>).
513:             * @since 3.1
514:             */
515:            String HIPPIE_COMPLETION = "org.eclipse.ui.edit.text.hippieCompletion"; //$NON-NLS-1$
516:
517:            /**
518:             * Command ID of the command to cycle the revision rendering mode.
519:             * Value: <code>"org.eclipse.ui.editors.revisions.rendering.cycle"</code>).
520:             * @since 3.3
521:             */
522:            String REVISION_RENDERING_CYCLE = "org.eclipse.ui.editors.revisions.rendering.cycle"; //$NON-NLS-1$
523:
524:            /**
525:             * Command ID of the command to toggle the revision author display.
526:             * Value: <code>"org.eclipse.ui.editors.revisions.author.toggle"</code>).
527:             * @since 3.3
528:             */
529:            String REVISION_AUTHOR_TOGGLE = "org.eclipse.ui.editors.revisions.author.toggle"; //$NON-NLS-1$
530:
531:            /**
532:             * Command ID of the command to toggle the revision ID display.
533:             * Value: <code>"org.eclipse.ui.editors.revisions.id.toggle"</code>).
534:             * @since 3.3
535:             */
536:            String REVISION_ID_TOGGLE = "org.eclipse.ui.editors.revisions.id.toggle"; //$NON-NLS-1$
537:
538:            /**
539:             * Command ID of the recenter command.
540:             * Value: <code>"org.eclipse.ui.edit.text.recenter"</code>).
541:             * @since 3.3
542:             */
543:            String RECENTER = "org.eclipse.ui.edit.text.recenter"; //$NON-NLS-1$
544:
545:            /**
546:             * Command ID of the command to toggle the display of whitespace characters.
547:             * Value: <code>"org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"</code>).
548:             * @since 3.3
549:             */
550:            String SHOW_WHITESPACE_CHARACTERS = "org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"; //$NON-NLS-1$
551:
552:            /**
553:             * Command ID of the command to display information for the
554:             * current caret location in a sticky hover.
555:             * Value <code>"org.eclipse.ui.edit.text.showInformation"</code>).
556:             * @see IInformationProvider
557:             * @since 3.3 
558:             */
559:            String SHOW_INFORMATION = "org.eclipse.ui.edit.text.showInformation"; //$NON-NLS-1$
560:
561:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.