KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > texteditor > ITextEditorActionDefinitionIds


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  * Chris.Dennis@invidi.com - http://bugs.eclipse.org/bugs/show_bug.cgi?id=29027
11  * Genady Beryozkin, me@genady.org - https://bugs.eclipse.org/bugs/show_bug.cgi?id=11668
12  * Benjamin Muskalla <b.muskalla@gmx.net> - https://bugs.eclipse.org/bugs/show_bug.cgi?id=41573
13  *******************************************************************************/

14 package org.eclipse.ui.texteditor;
15
16 import org.eclipse.jface.text.information.IInformationProvider;
17
18
19 /**
20  * Defines the definitions ids for the text editor actions. These actions are
21  * navigation, selection, and modification actions.
22  * @since 2.0
23  */

24 public interface ITextEditorActionDefinitionIds extends IWorkbenchActionDefinitionIds {
25
26     // edit
27

28     /**
29      * Action definition id of the edit delete line action.
30      * Value: <code>"org.eclipse.ui.edit.text.delete.line"</code>
31      */

32     String JavaDoc DELETE_LINE= "org.eclipse.ui.edit.text.delete.line"; //$NON-NLS-1$
33

34     /**
35      * Action definition id of the edit join lines action.
36      * Value: <code>"org.eclipse.ui.edit.text.join.line"</code>
37      * @since 3.3
38      */

39     String JavaDoc JOIN_LINES= "org.eclipse.ui.edit.text.join.lines"; //$NON-NLS-1$
40

41     /**
42      * Action definition id of the edit cut line action.
43      * Value: <code>"org.eclipse.ui.edit.text.cut.line"</code>
44      * @since 2.1
45      */

46     String JavaDoc CUT_LINE= "org.eclipse.ui.edit.text.cut.line"; //$NON-NLS-1$
47

48     /**
49      * Action definition id of the edit delete line to beginning action.
50      * Value: <code>"org.eclipse.ui.edit.text.delete.line.to.beginning"</code>
51      */

52     String JavaDoc DELETE_LINE_TO_BEGINNING= "org.eclipse.ui.edit.text.delete.line.to.beginning"; //$NON-NLS-1$
53

54     /**
55      * Action definition id of the edit cut line to beginning action.
56      * Value: <code>"org.eclipse.ui.edit.text.cut.line.to.beginning"</code>
57      * @since 2.1
58      */

59     String JavaDoc CUT_LINE_TO_BEGINNING= "org.eclipse.ui.edit.text.cut.line.to.beginning"; //$NON-NLS-1$
60

61     /**
62      * Action definition id of the edit delete line to end action.
63      * Value: <code>"org.eclipse.ui.edit.text.delete.line.to.end"</code>
64      */

65     String JavaDoc DELETE_LINE_TO_END= "org.eclipse.ui.edit.text.delete.line.to.end"; //$NON-NLS-1$
66

67     /**
68      * Action definition id of the edit cut line to end action.
69      * Value: <code>"org.eclipse.ui.edit.text.cut.line.to.end"</code>
70      * @since 2.1
71      */

72     String JavaDoc CUT_LINE_TO_END= "org.eclipse.ui.edit.text.cut.line.to.end"; //$NON-NLS-1$
73

74     /**
75      * Action definition id of the edit set mark action.
76      * Value: <code>"org.eclipse.ui.edit.text.set.mark"</code>
77      */

78     String JavaDoc SET_MARK= "org.eclipse.ui.edit.text.set.mark"; //$NON-NLS-1$
79

80     /**
81      * Action definition id of the edit clear mark action.
82      * Value: <code>"org.eclipse.ui.edit.text.clear.mark"</code>
83      */

84     String JavaDoc CLEAR_MARK= "org.eclipse.ui.edit.text.clear.mark"; //$NON-NLS-1$
85

86     /**
87      * Action definition id of the edit swap mark action.
88      * Value: <code>"org.eclipse.ui.edit.text.swap.mark"</code>
89      */

90     String JavaDoc SWAP_MARK= "org.eclipse.ui.edit.text.swap.mark"; //$NON-NLS-1$
91

92     /**
93      * Action definition id of the smart enter action.
94      * Value: <code>"org.eclipse.ui.edit.text.smartEnter"</code>
95      * @since 3.0
96      */

97     String JavaDoc SMART_ENTER= "org.eclipse.ui.edit.text.smartEnter"; //$NON-NLS-1$
98

99     /**
100      * Action definition id of the smart enter (inverse) action.
101      * Value: <code>"org.eclipse.ui.edit.text.smartEnterInverse"</code>
102      * @since 3.0
103      */

104     String JavaDoc SMART_ENTER_INVERSE= "org.eclipse.ui.edit.text.smartEnterInverse"; //$NON-NLS-1$
105

106     /**
107      * Action definition id of the move lines upwards action.
108      * Value: <code>"org.eclipse.ui.edit.text.moveLineUp"</code>
109      * @since 3.0
110      */

111     String JavaDoc MOVE_LINES_UP= "org.eclipse.ui.edit.text.moveLineUp"; //$NON-NLS-1$
112

113     /**
114      * Action definition id of the move lines downwards action.
115      * Value: <code>"org.eclipse.ui.edit.text.moveLineDown"</code>
116      * @since 3.0
117      */

118     String JavaDoc MOVE_LINES_DOWN= "org.eclipse.ui.edit.text.moveLineDown"; //$NON-NLS-1$
119

120     /**
121      * Action definition id of the copy lines upwards action.
122      * Value: <code>"org.eclipse.ui.edit.text.copyLineUp"</code>
123      * @since 3.0
124      */

125     String JavaDoc COPY_LINES_UP= "org.eclipse.ui.edit.text.copyLineUp"; //$NON-NLS-1$;
126

127     /**
128      * Action definition id of the copy lines downwards action.
129      * Value: <code>"org.eclipse.ui.edit.text.copyLineDown"</code>
130      * @since 3.0
131      */

132     String JavaDoc COPY_LINES_DOWN= "org.eclipse.ui.edit.text.copyLineDown"; //$NON-NLS-1$;
133

134     /**
135      * Action definition id of the upper case action.
136      * Value: <code>"org.eclipse.ui.edit.text.upperCase"</code>
137      * @since 3.0
138      */

139     String JavaDoc UPPER_CASE= "org.eclipse.ui.edit.text.upperCase"; //$NON-NLS-1$
140

141     /**
142      * Action definition id of the lower case action.
143      * Value: <code>"org.eclipse.ui.edit.text.lowerCase"</code>
144      * @since 3.0
145      */

146     String JavaDoc LOWER_CASE= "org.eclipse.ui.edit.text.lowerCase"; //$NON-NLS-1$
147

148
149     // navigation
150

151     /**
152      * Action definition id of the navigate goto previous line action.
153      * Value: <code>"org.eclipse.ui.edit.text.goto.lineUp"</code>
154      */

155     String JavaDoc LINE_UP= "org.eclipse.ui.edit.text.goto.lineUp"; //$NON-NLS-1$
156

157     /**
158      * Action definition id of the navigate goto next line action.
159      * Value: <code>"org.eclipse.ui.edit.text.goto.lineDown"</code>
160      */

161     String JavaDoc LINE_DOWN= "org.eclipse.ui.edit.text.goto.lineDown"; //$NON-NLS-1$
162

163     /**
164      * Action definition id of the navigate goto line start action.
165      * Value: <code>"org.eclipse.ui.edit.text.goto.lineStart"</code>
166      */

167     String JavaDoc LINE_START= "org.eclipse.ui.edit.text.goto.lineStart"; //$NON-NLS-1$
168

169     /**
170      * Action definition id of the navigate goto line end action.
171      * Value: <code>"org.eclipse.ui.edit.text.goto.lineEnd"</code>
172      */

173     String JavaDoc LINE_END= "org.eclipse.ui.edit.text.goto.lineEnd"; //$NON-NLS-1$
174

175     /**
176      * Action definition id of the navigate goto line action.
177      * Value: <code>"org.eclipse.ui.edit.text.goto.line"</code>
178      */

179     String JavaDoc LINE_GOTO= "org.eclipse.ui.edit.text.goto.line"; //$NON-NLS-1$
180

181     /**
182      * Action definition id of the navigate goto previous column action.
183      * Value: <code>"org.eclipse.ui.edit.text.goto.columnPrevious"</code>
184      */

185     String JavaDoc COLUMN_PREVIOUS= "org.eclipse.ui.edit.text.goto.columnPrevious"; //$NON-NLS-1$
186

187     /**
188      * Action definition id of the navigate goto next column action.
189      * Value: <code>"org.eclipse.ui.edit.text.goto.columnNext"</code>
190      */

191     String JavaDoc COLUMN_NEXT= "org.eclipse.ui.edit.text.goto.columnNext"; //$NON-NLS-1$
192

193     /**
194      * Action definition id of the navigate goto previous page action.
195      * Value: <code>"org.eclipse.ui.edit.text.goto.pageUp"</code>
196      */

197     String JavaDoc PAGE_UP= "org.eclipse.ui.edit.text.goto.pageUp"; //$NON-NLS-1$
198

199     /**
200      * Action definition id of the navigate goto next page action.
201      * Value: <code>"org.eclipse.ui.edit.text.goto.pageDown"</code>
202      */

203     String JavaDoc PAGE_DOWN= "org.eclipse.ui.edit.text.goto.pageDown"; //$NON-NLS-1$
204

205     /**
206      * Action definition id of the navigate goto previous word action.
207      * Value: <code>"org.eclipse.ui.edit.text.goto.wordPrevious"</code>
208      */

209     String JavaDoc WORD_PREVIOUS= "org.eclipse.ui.edit.text.goto.wordPrevious"; //$NON-NLS-1$
210

211     /**
212      * Action definition id of the navigate goto next word action.
213      * Value: <code>"org.eclipse.ui.edit.text.goto.wordNext"</code>
214      */

215     String JavaDoc WORD_NEXT= "org.eclipse.ui.edit.text.goto.wordNext"; //$NON-NLS-1$
216

217     /**
218      * Action definition id of the navigate goto text start action.
219      * Value: <code>"org.eclipse.ui.edit.text.goto.textStart"</code>
220      */

221     String JavaDoc TEXT_START= "org.eclipse.ui.edit.text.goto.textStart"; //$NON-NLS-1$
222

223     /**
224      * Action definition id of the navigate goto text end action.
225      * Value: <code>"org.eclipse.ui.edit.text.goto.textEnd"</code>
226      */

227     String JavaDoc TEXT_END= "org.eclipse.ui.edit.text.goto.textEnd"; //$NON-NLS-1$
228

229     /**
230      * Action definition id of the navigate goto start of window action.
231      * Value: <code>"org.eclipse.ui.edit.text.goto.windowStart"</code>
232      */

233     String JavaDoc WINDOW_START= "org.eclipse.ui.edit.text.goto.windowStart"; //$NON-NLS-1$
234

235     /**
236      * Action definition id of the navigate goto end of window action.
237      * Value: <code>"org.eclipse.ui.edit.text.goto.windowEnd"</code>
238      */

239     String JavaDoc WINDOW_END= "org.eclipse.ui.edit.text.goto.windowEnd"; //$NON-NLS-1$
240

241     /**
242      * Action definition id of the navigate scroll line up action.
243      * Value: <code>"org.eclipse.ui.edit.text.scroll.lineUp"</code>
244      */

245     String JavaDoc SCROLL_LINE_UP= "org.eclipse.ui.edit.text.scroll.lineUp"; //$NON-NLS-1$
246

247     /**
248      * Action definition id of the navigate scroll line down action.
249      * Value: <code>"org.eclipse.ui.edit.text.scroll.lineDown"</code>
250      */

251     String JavaDoc SCROLL_LINE_DOWN= "org.eclipse.ui.edit.text.scroll.lineDown"; //$NON-NLS-1$
252

253
254     // selection
255

256     /**
257      * Action definition id of the select line up action.
258      * Value: <code>"org.eclipse.ui.edit.text.select.lineUp"</code>
259      */

260     String JavaDoc SELECT_LINE_UP= "org.eclipse.ui.edit.text.select.lineUp"; //$NON-NLS-1$
261

262     /**
263      * Action definition id of the select line down action.
264      * Value: <code>"org.eclipse.ui.edit.text.select.lineDown"</code>
265      */

266     String JavaDoc SELECT_LINE_DOWN= "org.eclipse.ui.edit.text.select.lineDown"; //$NON-NLS-1$
267

268     /**
269      * Action definition id of the select line start action.
270      * Value: <code>"org.eclipse.ui.edit.text.select.lineStart"</code>
271      */

272     String JavaDoc SELECT_LINE_START= "org.eclipse.ui.edit.text.select.lineStart"; //$NON-NLS-1$
273

274     /**
275      * Action definition id of the select line end action.
276      * Value: <code>"org.eclipse.ui.edit.text.select.lineEnd"</code>
277      */

278     String JavaDoc SELECT_LINE_END= "org.eclipse.ui.edit.text.select.lineEnd"; //$NON-NLS-1$
279

280     /**
281      * Action definition id of the select previous column action.
282      * Value: <code>"org.eclipse.ui.edit.text.select.columnPrevious"</code>
283      */

284     String JavaDoc SELECT_COLUMN_PREVIOUS= "org.eclipse.ui.edit.text.select.columnPrevious"; //$NON-NLS-1$
285

286     /**
287      * Action definition id of the select next column action.
288      * Value: <code>"org.eclipse.ui.edit.text.select.columnNext"</code>
289      */

290     String JavaDoc SELECT_COLUMN_NEXT= "org.eclipse.ui.edit.text.select.columnNext"; //$NON-NLS-1$
291

292     /**
293      * Action definition id of the select page up action.
294      * Value: <code>"org.eclipse.ui.edit.text.select.pageUp"</code>
295      */

296     String JavaDoc SELECT_PAGE_UP= "org.eclipse.ui.edit.text.select.pageUp"; //$NON-NLS-1$
297

298     /**
299      * Action definition id of the select page down action.
300      * Value: <code>"org.eclipse.ui.edit.text.select.pageDown"</code>
301      */

302     String JavaDoc SELECT_PAGE_DOWN= "org.eclipse.ui.edit.text.select.pageDown"; //$NON-NLS-1$
303

304     /**
305      * Action definition id of the select previous word action.
306      * Value: <code>"org.eclipse.ui.edit.text.select.wordPrevious"</code>
307      */

308     String JavaDoc SELECT_WORD_PREVIOUS= "org.eclipse.ui.edit.text.select.wordPrevious"; //$NON-NLS-1$
309

310     /**
311      * Action definition id of the select next word action.
312      * Value: <code>"org.eclipse.ui.edit.text.select.wordNext"</code>
313      */

314     String JavaDoc SELECT_WORD_NEXT= "org.eclipse.ui.edit.text.select.wordNext"; //$NON-NLS-1$
315

316     /**
317      * Action definition id of the select text start action.
318      * Value: <code>"org.eclipse.ui.edit.text.select.textStart"</code>
319      */

320     String JavaDoc SELECT_TEXT_START= "org.eclipse.ui.edit.text.select.textStart"; //$NON-NLS-1$
321

322     /**
323      * Action definition id of the select text end action.
324      * Value: <code>"org.eclipse.ui.edit.text.select.textEnd"</code>
325      */

326     String JavaDoc SELECT_TEXT_END= "org.eclipse.ui.edit.text.select.textEnd"; //$NON-NLS-1$
327

328     /**
329      * Action definition id of the select window start action.
330      * Value: <code>"org.eclipse.ui.edit.text.select.windowStart"</code>
331      */

332     String JavaDoc SELECT_WINDOW_START= "org.eclipse.ui.edit.text.select.windowStart"; //$NON-NLS-1$
333

334     /**
335      * Action definition id of the select window end action.
336      * Value: <code>"org.eclipse.ui.edit.text.select.windowEnd"</code>
337      */

338     String JavaDoc SELECT_WINDOW_END= "org.eclipse.ui.edit.text.select.windowEnd"; //$NON-NLS-1$
339

340
341     // modification
342

343     /**
344      * Action definition id of the edit delete previous character action.
345      * Value: <code>"org.eclipse.ui.edit.text.deletePrevious"</code>
346      */

347     String JavaDoc DELETE_PREVIOUS= "org.eclipse.ui.edit.text.deletePrevious"; //$NON-NLS-1$
348

349     /**
350      * Action definition id of the edit delete next character action.
351      * Value: <code>"org.eclipse.ui.edit.text.deleteNext"</code>
352      */

353     String JavaDoc DELETE_NEXT= "org.eclipse.ui.edit.text.deleteNext"; //$NON-NLS-1$
354

355     /**
356      * Action definition id of the edit delete previous word action.
357      * Value: <code>"org.eclipse.ui.edit.text.deletePreviousWord"</code>
358      * @since 2.1
359      */

360     String JavaDoc DELETE_PREVIOUS_WORD= "org.eclipse.ui.edit.text.deletePreviousWord"; //$NON-NLS-1$
361

362     /**
363      * Action definition id of the edit delete next word action.
364      * Value: <code>"org.eclipse.ui.edit.text.deleteNextWord"</code>
365      * @since 2.1
366      */

367     String JavaDoc DELETE_NEXT_WORD= "org.eclipse.ui.edit.text.deleteNextWord"; //$NON-NLS-1$
368

369     /**
370      * Action definition id of the edit shift right action.
371      * Value: <code>"org.eclipse.ui.edit.text.shiftRight"</code>
372      */

373     String JavaDoc SHIFT_RIGHT= "org.eclipse.ui.edit.text.shiftRight"; //$NON-NLS-1$
374

375     /**
376      * Action definition id of the edit shift left action.
377      * Value: <code>"org.eclipse.ui.edit.text.shiftLeft"</code>
378      */

379     String JavaDoc SHIFT_LEFT= "org.eclipse.ui.edit.text.shiftLeft"; //$NON-NLS-1$
380

381     /**
382      * Action definition id of the edit convert to window's line delimiter action.
383      * Value: <code>"org.eclipse.ui.edit.text.convert.lineDelimiters.toWindows"</code>
384      * @deprecated since 3.1. No longer supported as editor actions.
385      */

386     String JavaDoc CONVERT_LINE_DELIMITERS_TO_WINDOWS= "org.eclipse.ui.edit.text.convert.lineDelimiters.toWindows"; //$NON-NLS-1$
387

388     /**
389      * Action definition id of the edit convert to Unix line delimiter action.
390      * Value: <code>"org.eclipse.ui.edit.text.convert.lineDelimiters.toUNIX"</code>
391      * @deprecated since 3.1. No longer supported as editor actions.
392      */

393     String JavaDoc CONVERT_LINE_DELIMITERS_TO_UNIX= "org.eclipse.ui.edit.text.convert.lineDelimiters.toUNIX"; //$NON-NLS-1$
394

395     /**
396      * Action definition id of the edit convert to Mac line delimiter action.
397      * Value: <code>"org.eclipse.ui.edit.text.convert.lineDelimiters.toMac"</code>
398      * @deprecated since 3.1. No longer supported as editor actions.
399      */

400     String JavaDoc CONVERT_LINE_DELIMITERS_TO_MAC= "org.eclipse.ui.edit.text.convert.lineDelimiters.toMac"; //$NON-NLS-1$
401

402
403     // miscellaneous
404

405     /**
406      * Action definition id of the toggle input mode action.
407      * Value: <code>"org.eclipse.ui.edit.text.toggleOverwrite"</code>
408      */

409     String JavaDoc TOGGLE_OVERWRITE= "org.eclipse.ui.edit.text.toggleOverwrite"; //$NON-NLS-1$
410

411     /**
412      * Action definition id of toggle show selected element only action.
413      * Value: <code>"org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"</code>
414      * @since 3.0
415      */

416     String JavaDoc TOGGLE_SHOW_SELECTED_ELEMENT_ONLY= "org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"; //$NON-NLS-1$
417

418     /**
419      * Action definition id of the show ruler context menu action.
420      * Value: <code>"org.eclipse.ui.edit.text.showRulerContextMenu"</code>
421      */

422     String JavaDoc SHOW_RULER_CONTEXT_MENU= "org.eclipse.ui.edit.text.showRulerContextMenu"; //$NON-NLS-1$
423

424     /**
425      * Action definition id of go to last edit position action.
426      * Value: <code>"org.eclipse.ui.edit.text.gotoLastEditPosition"</code>
427      * @since 2.1
428      */

429     String JavaDoc GOTO_LAST_EDIT_POSITION= "org.eclipse.ui.edit.text.gotoLastEditPosition"; //$NON-NLS-1$
430

431     /**
432      * Action definition id of go to next annotation action.
433      * Value: <code>"org.eclipse.ui.edit.text.gotoNextAnnotation"</code>
434      * @since 3.0
435      */

436     String JavaDoc GOTO_NEXT_ANNOTATION= "org.eclipse.ui.edit.text.gotoNextAnnotation"; //$NON-NLS-1$
437

438     /**
439      * Action definition id of go to previous annotation action.
440      * Value: <code>"org.eclipse.ui.edit.text.gotoPreviousAnnotation"</code>
441      * @since 3.0
442      */

443     String JavaDoc GOTO_PREVIOUS_ANNOTATION= "org.eclipse.ui.edit.text.gotoPreviousAnnotation"; //$NON-NLS-1$
444

445     /**
446      * Action definition ID of the edit -> content assist proposal action
447      * Value: <code>"org.eclipse.ui.edit.text.contentAssist.proposals"</code>).
448      * <p>
449      * Note: Since 3.2 the command is defined in <code>org.eclipse.ui</code> and
450      * its ID can also be accessed using {@link org.eclipse.ui.fieldassist.ContentAssistCommandAdapter#CONTENT_PROPOSAL_COMMAND}.
451      * </p>
452      * @since 2.1
453      */

454     String JavaDoc CONTENT_ASSIST_PROPOSALS= "org.eclipse.ui.edit.text.contentAssist.proposals"; //$NON-NLS-1$
455

456     /**
457      * Action definition ID of the edit -> content assist context information action
458      * Value: <code>"org.eclipse.ui.edit.text.contentAssist.contextInformation"</code>).
459      * @since 2.1
460      */

461     String JavaDoc CONTENT_ASSIST_CONTEXT_INFORMATION= "org.eclipse.ui.edit.text.contentAssist.contextInformation"; //$NON-NLS-1$
462

463     /**
464      * Action definition ID of the edit -> quick assist proposal action
465      * <p>
466      * Note: The constant contains 'jdt' for historical and compatibility reasons.
467      * </p>
468      * (value <code>"org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals"</code>).
469      * @since 3.2
470      */

471     String JavaDoc QUICK_ASSIST= "org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals"; //$NON-NLS-1$
472

473     /**
474      * Action definition ID of the edit -> smart insert mode action
475      * Value: <code>"org.eclipse.ui.edit.text.toggleInsertMode"</code>).
476      * @since 3.0
477      */

478     String JavaDoc TOGGLE_INSERT_MODE= "org.eclipse.ui.edit.text.toggleInsertMode"; //$NON-NLS-1$
479

480     /**
481      * Value: <code>"org.eclipse.ui.edit.text.changeEncoding"</code>).
482      * @since 3.1
483      */

484     String JavaDoc CHANGE_ENCODING= "org.eclipse.ui.edit.text.changeEncoding"; //$NON-NLS-1$
485

486     /**
487      * Command ID of the revert line action
488      * Value: <code>"org.eclipse.ui.editors.quickdiff.revertLine"</code>).
489      * @since 3.1
490      */

491     String JavaDoc QUICKDIFF_REVERTLINE= "org.eclipse.ui.editors.quickdiff.revertLine"; //$NON-NLS-1$
492

493     /**
494      * Command ID of the revert selection/block action
495      * Value: <code>"org.eclipse.ui.editors.quickdiff.revert"</code>).
496      * @since 3.1
497      */

498     String JavaDoc QUICKDIFF_REVERT= "org.eclipse.ui.editors.quickdiff.revert"; //$NON-NLS-1$
499

500     /**
501      * Command ID of the toggle quick diff action. The name has no proper prefix for
502      * historical reasons.
503      * Value: <code>"org.eclipse.quickdiff.toggle"</code>).
504      * @since 3.1
505      */

506     String JavaDoc QUICKDIFF_TOGGLE= "org.eclipse.quickdiff.toggle"; //$NON-NLS-1$
507

508     /**
509      * Command ID of the toggle display of line numbers
510      * Value: <code>"org.eclipse.ui.editors.lineNumberToggle"</code>).
511      * @since 3.1
512      */

513     String JavaDoc LINENUMBER_TOGGLE= "org.eclipse.ui.editors.lineNumberToggle"; //$NON-NLS-1$
514

515     /**
516      * Action definition ID of the edit -> text complete action
517      * Value: <code>"org.eclipse.ui.edit.text.hippieCompletion"</code>).
518      * @since 3.1
519      */

520     String JavaDoc HIPPIE_COMPLETION= "org.eclipse.ui.edit.text.hippieCompletion"; //$NON-NLS-1$
521

522     /**
523      * Command ID of the command to cycle the revision rendering mode.
524      * Value: <code>"org.eclipse.ui.editors.revisions.rendering.cycle"</code>).
525      * @since 3.3
526      */

527     String JavaDoc REVISION_RENDERING_CYCLE= "org.eclipse.ui.editors.revisions.rendering.cycle"; //$NON-NLS-1$
528

529     /**
530      * Command ID of the command to toggle the revision author display.
531      * Value: <code>"org.eclipse.ui.editors.revisions.author.toggle"</code>).
532      * @since 3.3
533      */

534     String JavaDoc REVISION_AUTHOR_TOGGLE= "org.eclipse.ui.editors.revisions.author.toggle"; //$NON-NLS-1$
535

536     /**
537      * Command ID of the command to toggle the revision ID display.
538      * Value: <code>"org.eclipse.ui.editors.revisions.id.toggle"</code>).
539      * @since 3.3
540      */

541     String JavaDoc REVISION_ID_TOGGLE= "org.eclipse.ui.editors.revisions.id.toggle"; //$NON-NLS-1$
542

543      /**
544      * Command ID of the recenter command.
545      * Value: <code>"org.eclipse.ui.edit.text.recenter"</code>).
546      * @since 3.3
547      */

548     String JavaDoc RECENTER= "org.eclipse.ui.edit.text.recenter"; //$NON-NLS-1$
549

550      /**
551      * Command ID of the command to toggle the display of whitespace characters.
552      * Value: <code>"org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"</code>).
553      * @since 3.3
554      */

555     String JavaDoc SHOW_WHITESPACE_CHARACTERS = "org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"; //$NON-NLS-1$
556

557     /**
558      * Command ID of the command to display information for the
559      * current caret location in a sticky hover.
560      * Value <code>"org.eclipse.ui.edit.text.showInformation"</code>).
561      * @see IInformationProvider
562      * @since 3.3
563      */

564     String JavaDoc SHOW_INFORMATION= "org.eclipse.ui.edit.text.showInformation"; //$NON-NLS-1$
565

566 }
567
Popular Tags