forked from dkomanov/fizteh-java-2014
-
Notifications
You must be signed in to change notification settings - Fork 0
/
workbench.xmi
1274 lines (1274 loc) · 199 KB
/
workbench.xmi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="ASCII"?>
<application:Application xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="http://www.eclipse.org/ui/2010/UIModel/application" xmlns:basic="http://www.eclipse.org/ui/2010/UIModel/application/ui/basic" xmi:id="_udec4EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" bindingContexts="_udj8dUjqEeSGvY5Z8GTn6g">
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<workbench>
<mruList/>
</workbench>"/>
<tags>activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
<tags>ModelMigrationProcessor.001</tags>
<children xsi:type="basic:TrimmedWindow" xmi:id="_udec4UjqEeSGvY5Z8GTn6g" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" visible="false" label="%trimmedwindow.label.eclipseSDK" width="1024" height="768">
<tags>topLevel</tags>
</children>
<bindingTables xmi:id="_udec4kjqEeSGvY5Z8GTn6g" contributorURI="platform:/plugin/org.eclipse.platform" bindingContext="_udj8dUjqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udec40jqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+F2" command="_udwJsEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udec5EjqEeSGvY5Z8GTn6g" keySequence="CTRL+INSERT" command="_udvipkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udec5UjqEeSGvY5Z8GTn6g" keySequence="CTRL+A" command="_udu71EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udec5kjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+I" command="_udttn0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udec50jqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+F1" command="_udttd0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udec6EjqEeSGvY5Z8GTn6g" keySequence="CTRL+SPACE" command="_udvi4EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udec6UjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+SPACE" command="_udx_EUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udec6kjqEeSGvY5Z8GTn6g" keySequence="CTRL+V" command="_uduUoUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udec60jqEeSGvY5Z8GTn6g" keySequence="CTRL+X" command="_udww2kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udec7EjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+Z" command="_udxX8EjqEeSGvY5Z8GTn6g">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_udec7UjqEeSGvY5Z8GTn6g" keySequence="CTRL+Z" command="_uduUsUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udec7kjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+V" command="_udxX6UjqEeSGvY5Z8GTn6g">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_udec70jqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+L" command="_uduUkEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udec8EjqEeSGvY5Z8GTn6g" keySequence="CTRL+1" command="_udwJ4EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udec8UjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+F3" command="_udymLUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udec8kjqEeSGvY5Z8GTn6g" keySequence="CTRL+F10" command="_udviwkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD8EjqEeSGvY5Z8GTn6g" keySequence="SHIFT+INSERT" command="_uduUoUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD8UjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+D" command="_udxX6UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD8kjqEeSGvY5Z8GTn6g" keySequence="SHIFT+DEL" command="_udww2kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD80jqEeSGvY5Z8GTn6g" keySequence="CTRL+C" command="_udvipkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD9EjqEeSGvY5Z8GTn6g" keySequence="ALT+PAGE_UP" command="_udvi2UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD9UjqEeSGvY5Z8GTn6g" keySequence="ALT+PAGE_DOWN" command="_udww6UjqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udfD9kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.javaEditorScope" bindingContext="_udj8gUjqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udfD90jqEeSGvY5Z8GTn6g" keySequence="CTRL+I" command="_udvisEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD-EjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+F" command="_udxX6EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD-UjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+ARROW_UP" command="_udwJ8kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD-kjqEeSGvY5Z8GTn6g" keySequence="CTRL+7" command="_udttoEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD-0jqEeSGvY5Z8GTn6g" keySequence="CTRL+/" command="_udttoEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD_EjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+M" command="_udxX_kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD_UjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+/" command="_udttokjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD_kjqEeSGvY5Z8GTn6g" keySequence="CTRL+O" command="_udu7ukjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfD_0jqEeSGvY5Z8GTn6g" keySequence="CTRL+F3" command="_udwJzkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfEAEjqEeSGvY5Z8GTn6g" keySequence="CTRL+T" command="_udvit0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfEAUjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+P" command="_udvi10jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfEAkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+U" command="_udx-8UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfEA0jqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+O" command="_udttdkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfEBEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+B" command="_udxX7UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfEBUjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+ARROW_UP" command="_udwJ7EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfEBkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+ARROW_DOWN" command="_udu7yUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfEB0jqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+C" command="_udttoEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfECEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_udzNAUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfECUjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+\" command="_udzNBUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrAEjqEeSGvY5Z8GTn6g" keySequence="CTRL+2 F" command="_udx-7EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrAUjqEeSGvY5Z8GTn6g" keySequence="CTRL+2 L" command="_udvivUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrAkjqEeSGvY5Z8GTn6g" keySequence="CTRL+2 M" command="_udu7v0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrA0jqEeSGvY5Z8GTn6g" keySequence="CTRL+2 R" command="_uduUuUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrBEjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_udzNAEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrBUjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+ARROW_LEFT" command="_udyl8kjqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udfrBkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.contexts.window" bindingContext="_udj8dkjqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udfrB0jqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_udtthkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrCEjqEeSGvY5Z8GTn6g" keySequence="ALT+ARROW_LEFT" command="_udwJ6kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrCUjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+D P" command="_udymEEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrCkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+D O" command="_uduUo0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrC0jqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+D E" command="_udviv0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrDEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+D Q" command="_udxX3UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrDUjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+D J" command="_udx_HkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrDkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+D A" command="_udxYCkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrD0jqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+D T" command="_udwJw0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrEEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+J" command="_udzNJEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrEUjqEeSGvY5Z8GTn6g" keySequence="ALT+ARROW_RIGHT" command="_udxX-kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrEkjqEeSGvY5Z8GTn6g" keySequence="CTRL+B" command="_udtthEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrE0jqEeSGvY5Z8GTn6g" keySequence="CTRL+F8" command="_udzNHEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrFEjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+F7" command="_udwJt0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrFUjqEeSGvY5Z8GTn6g" keySequence="CTRL+F7" command="_udx-4UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrFkjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+F6" command="_udviyEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrF0jqEeSGvY5Z8GTn6g" keySequence="CTRL+F6" command="_udu7l0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrGEjqEeSGvY5Z8GTn6g" keySequence="CTRL+M" command="_udvizEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udfrGUjqEeSGvY5Z8GTn6g" keySequence="F12" command="_udww-UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSEEjqEeSGvY5Z8GTn6g" keySequence="ALT+-" command="_udwJ8UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSEUjqEeSGvY5Z8GTn6g" keySequence="CTRL+," command="_uduUpEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSEkjqEeSGvY5Z8GTn6g" keySequence="CTRL+." command="_udu7uUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSE0jqEeSGvY5Z8GTn6g" keySequence="DEL" command="_uduUkUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSFEjqEeSGvY5Z8GTn6g" keySequence="F5" command="_uduUx0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSFUjqEeSGvY5Z8GTn6g" keySequence="ALT+CR" command="_udx-5UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSFkjqEeSGvY5Z8GTn6g" keySequence="CTRL+P" command="_udxX-UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSF0jqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+S" command="_udviukjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSGEjqEeSGvY5Z8GTn6g" keySequence="CTRL+S" command="_udwJ1EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSGUjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+F4" command="_udymKEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSGkjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+W" command="_udymKEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSG0jqEeSGvY5Z8GTn6g" keySequence="CTRL+F4" command="_udu71UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSHEjqEeSGvY5Z8GTn6g" keySequence="CTRL+W" command="_udu71UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSHUjqEeSGvY5Z8GTn6g" keySequence="CTRL+N" command="_udvioEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSHkjqEeSGvY5Z8GTn6g" keySequence="ALT+CTRL+SHIFT+M" command="_udu7n0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSH0jqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+N" command="_udtteEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSIEjqEeSGvY5Z8GTn6g" keySequence="CTRL+U" command="_udzNKkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSIUjqEeSGvY5Z8GTn6g" keySequence="SHIFT+F5" command="_uduUtkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSIkjqEeSGvY5Z8GTn6g" keySequence="F11" command="_uduUs0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSI0jqEeSGvY5Z8GTn6g" keySequence="CTRL+F11" command="_udxYBEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSJEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+S" command="_uduUpUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSJUjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+O" command="_udww-kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSJkjqEeSGvY5Z8GTn6g" keySequence="F2" command="_udu7tkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSJ0jqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+U" command="_udttrEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSKEjqEeSGvY5Z8GTn6g" keySequence="F4" command="_udwJ3kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSKUjqEeSGvY5Z8GTn6g" keySequence="SHIFT+F2" command="_udx_DEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udgSKkjqEeSGvY5Z8GTn6g" keySequence="F3" command="_udww5kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5IEjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+T" command="_udwJwEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5IUjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+L" command="_udx_JEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5IkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+M" command="_udyl-UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5I0jqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+V" command="_udu7lkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5JEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+R" command="_udww00jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5JUjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+T" command="_udxYCEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5JkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Z" command="_udttl0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5J0jqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+F8" command="_udwJwUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5KEjqEeSGvY5Z8GTn6g" keySequence="ALT+F7" command="_udwJ50jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5KUjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+F7" command="_udviskjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5KkjqEeSGvY5Z8GTn6g" keySequence="CTRL+{" command="_udwwy0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udg5K0jqEeSGvY5Z8GTn6g" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="false"/>
</bindings>
<bindings xmi:id="_udg5LEjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_udxX4EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5LUjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+R" command="_udvis0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5LkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+W" command="_udu7sUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5L0jqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+N" command="_uduUrUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5MEjqEeSGvY5Z8GTn6g" keySequence="CTRL+3" command="_udymL0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5MUjqEeSGvY5Z8GTn6g" keySequence="CTRL+Q" command="_udwxBUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5MkjqEeSGvY5Z8GTn6g" keySequence="CTRL+G" command="_udu7wEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5M0jqEeSGvY5Z8GTn6g" keySequence="CTRL+_" command="_udwwy0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udg5NEjqEeSGvY5Z8GTn6g" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="true"/>
</bindings>
<bindings xmi:id="_udg5NUjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+A" command="_udww70jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5NkjqEeSGvY5Z8GTn6g" keySequence="CTRL+H" command="_udx-5kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5N0jqEeSGvY5Z8GTn6g" keySequence="ALT+CTRL+SHIFT+A" command="_uduUgUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5OEjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+H" command="_udttgkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5OUjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+I" command="_udvio0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5OkjqEeSGvY5Z8GTn6g" keySequence="CTRL+E" command="_uduUmUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5O0jqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+X P" command="_udx-4EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5PEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+X O" command="_udvi0kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5PUjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+X E" command="_udzNBEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udg5PkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q J" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udg5P0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.JavadocView"/>
</bindings>
<bindings xmi:id="_udg5QEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q D" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udg5QUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.SourceView"/>
</bindings>
<bindings xmi:id="_udg5QkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q P" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udg5Q0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.PackageExplorer"/>
</bindings>
<bindings xmi:id="_udg5REjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q T" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udg5RUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.TypeHierarchy"/>
</bindings>
<bindings xmi:id="_udg5RkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q V" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udg5R0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/>
</bindings>
<bindings xmi:id="_udg5SEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q B" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udg5SUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/>
</bindings>
<bindings xmi:id="_udhgMEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+X Q" command="_udwJ70jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udhgMUjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+X J" command="_udxYC0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udhgMkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+X A" command="_udzNDEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udhgM0jqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+X T" command="_udx-5EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udhgNEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q S" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udhgNUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.search.ui.views.SearchView"/>
</bindings>
<bindings xmi:id="_udhgNkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q Y" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udhgN0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.sync.views.SynchronizeView"/>
</bindings>
<bindings xmi:id="_udhgOEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q Z" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udhgOUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/>
</bindings>
<bindings xmi:id="_udhgOkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q H" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udhgO0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.cheatsheets.views.CheatSheetView"/>
</bindings>
<bindings xmi:id="_udhgPEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q C" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udhgPUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/>
</bindings>
<bindings xmi:id="_udhgPkjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q Q" command="_udymH0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udhgP0jqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q X" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udhgQEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/>
</bindings>
<bindings xmi:id="_udhgQUjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q O" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udhgQkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/>
</bindings>
<bindings xmi:id="_udhgQ0jqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+Q L" command="_udymH0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udhgREjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/>
</bindings>
<bindings xmi:id="_udhgRUjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+C" command="_udx-7UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udhgRkjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+B" command="_udwxAUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udhgR0jqEeSGvY5Z8GTn6g" keySequence="ALT+CTRL+G" command="_uduUlkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udhgSEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+F" command="_udzNA0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udhgSUjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+E" command="_udwJs0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udhgSkjqEeSGvY5Z8GTn6g" keySequence="CTRL+F" command="_udww3kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udhgS0jqEeSGvY5Z8GTn6g" keySequence="CTRL+#" command="_udww7kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udhgTEjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+G" command="_uduUnkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udhgTUjqEeSGvY5Z8GTn6g" keySequence="ALT+CTRL+H" command="_uduUqUjqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udiHQEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.textEditorScope" bindingContext="_udj8fUjqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udiHQUjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_udttp0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHQkjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+J" command="_udww90jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHQ0jqEeSGvY5Z8GTn6g" keySequence="CTRL+ARROW_UP" command="_udxX9UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHREjqEeSGvY5Z8GTn6g" keySequence="ALT+CTRL+ARROW_UP" command="_udxYBUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHRUjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+INSERT" command="_udww5UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHRkjqEeSGvY5Z8GTn6g" keySequence="ALT+ARROW_DOWN" command="_udww3EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHR0jqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+A" command="_udwJ00jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHSEjqEeSGvY5Z8GTn6g" keySequence="CTRL+ARROW_DOWN" command="_udxX7kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHSUjqEeSGvY5Z8GTn6g" keySequence="ALT+/" command="_udzNHkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHSkjqEeSGvY5Z8GTn6g" keySequence="F2" command="_uduUhUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHS0jqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+Q" command="_udww4EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHTEjqEeSGvY5Z8GTn6g" keySequence="CTRL+NUMPAD_DIVIDE" command="_udxX4kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHTUjqEeSGvY5Z8GTn6g" keySequence="CTRL+NUMPAD_MULTIPLY" command="_udvi4UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHTkjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_udvi0EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHT0jqEeSGvY5Z8GTn6g" keySequence="CTRL+NUMPAD_ADD" command="_udwJykjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHUEjqEeSGvY5Z8GTn6g" keySequence="CTRL+NUMPAD_SUBTRACT" command="_udxYEkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHUUjqEeSGvY5Z8GTn6g" keySequence="CTRL+K" command="_udymC0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHUkjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+K" command="_udymHEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHU0jqEeSGvY5Z8GTn6g" keySequence="CTRL+J" command="_udvixUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHVEjqEeSGvY5Z8GTn6g" keySequence="CTRL+L" command="_udww6EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHVUjqEeSGvY5Z8GTn6g" keySequence="INSERT" command="_uduUiUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHVkjqEeSGvY5Z8GTn6g" keySequence="CTRL+F10" command="_udwJ40jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHV0jqEeSGvY5Z8GTn6g" keySequence="SHIFT+CR" command="_udvi20jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiHWEjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+CR" command="_udttjUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuUEjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+X" command="_udx_HUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuUUjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+Y" command="_udwJ80jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuUkjqEeSGvY5Z8GTn6g" keySequence="END" command="_udzNAkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuU0jqEeSGvY5Z8GTn6g" keySequence="HOME" command="_udwJz0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuVEjqEeSGvY5Z8GTn6g" keySequence="SHIFT+END" command="_udttiUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuVUjqEeSGvY5Z8GTn6g" keySequence="CTRL+HOME" command="_udx-40jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuVkjqEeSGvY5Z8GTn6g" keySequence="ALT+ARROW_UP" command="_udx-6kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuV0jqEeSGvY5Z8GTn6g" keySequence="CTRL+DEL" command="_uduUr0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuWEjqEeSGvY5Z8GTn6g" keySequence="CTRL+BS" command="_udu7pEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuWUjqEeSGvY5Z8GTn6g" keySequence="ALT+CTRL+J" command="_udxX9EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuWkjqEeSGvY5Z8GTn6g" keySequence="CTRL+END" command="_uduUikjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuW0jqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_udwwz0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuXEjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+DEL" command="_udu7lEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuXUjqEeSGvY5Z8GTn6g" keySequence="ALT+CTRL+ARROW_DOWN" command="_udx-7kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuXkjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_udymK0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuX0jqEeSGvY5Z8GTn6g" keySequence="SHIFT+HOME" command="_udww8kjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuYEjqEeSGvY5Z8GTn6g" keySequence="CTRL+ARROW_LEFT" command="_uduUvkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuYUjqEeSGvY5Z8GTn6g" keySequence="CTRL+ARROW_RIGHT" command="_udx-80jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuYkjqEeSGvY5Z8GTn6g" keySequence="CTRL+D" command="_udviwUjqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udiuY0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ant.ui.AntEditorScope" bindingContext="_udj8fkjqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udiuZEjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+F" command="_udxX6EjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuZUjqEeSGvY5Z8GTn6g" keySequence="SHIFT+F2" command="_udviq0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuZkjqEeSGvY5Z8GTn6g" keySequence="F3" command="_udwJ10jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuZ0jqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+R" command="_udttlEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udiuaEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+O" command="_udymHkjqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udiuaUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.pdeEditorContext" bindingContext="_udj8f0jqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udiuakjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+F" command="_udvix0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVYEjqEeSGvY5Z8GTn6g" keySequence="CTRL+O" command="_udyl-kjqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udjVYUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_udj8hEjqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udjVYkjqEeSGvY5Z8GTn6g" keySequence="CTRL+V" command="_uduUoEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVY0jqEeSGvY5Z8GTn6g" keySequence="CTRL+C" command="_uduUp0jqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udjVZEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.debugging" bindingContext="_udj8eEjqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udjVZUjqEeSGvY5Z8GTn6g" keySequence="F5" command="_udxX8UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVZkjqEeSGvY5Z8GTn6g" keySequence="CTRL+F5" command="_udww30jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVZ0jqEeSGvY5Z8GTn6g" keySequence="F8" command="_udzNK0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVaEjqEeSGvY5Z8GTn6g" keySequence="F7" command="_udymMUjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVaUjqEeSGvY5Z8GTn6g" keySequence="F6" command="_udttk0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVakjqEeSGvY5Z8GTn6g" keySequence="CTRL+F2" command="_udvi5UjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVa0jqEeSGvY5Z8GTn6g" keySequence="CTRL+R" command="_udviqkjqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udjVbEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_udj8fEjqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udjVbUjqEeSGvY5Z8GTn6g" keySequence="ALT+CR" command="_udxX-0jqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udjVbkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_udj8g0jqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udjVb0jqEeSGvY5Z8GTn6g" keySequence="CTRL+W" command="_udwJukjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVcEjqEeSGvY5Z8GTn6g" keySequence="CTRL+N" command="_udwwwkjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVcUjqEeSGvY5Z8GTn6g" keySequence="ALT+CTRL+M" command="_udttmEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVckjqEeSGvY5Z8GTn6g" keySequence="ALT+CTRL+N" command="_uduUiEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVc0jqEeSGvY5Z8GTn6g" keySequence="CTRL+T" command="_udxX0UjqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udjVdEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_udj8ekjqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udjVdUjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+," command="_udymG0jqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVdkjqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+." command="_udttckjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVd0jqEeSGvY5Z8GTn6g" keySequence="CTRL+G" command="_udwJskjqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udjVeEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.propertiesEditorScope" bindingContext="_udj8gEjqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udjVeUjqEeSGvY5Z8GTn6g" keySequence="CTRL+7" command="_udttoEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVekjqEeSGvY5Z8GTn6g" keySequence="CTRL+/" command="_udttoEjqEeSGvY5Z8GTn6g"/>
<bindings xmi:id="_udjVe0jqEeSGvY5Z8GTn6g" keySequence="CTRL+SHIFT+C" command="_udttoEjqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udjVfEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" bindingContext="_udj8ikjqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udj8cEjqEeSGvY5Z8GTn6g" keySequence="ALT+SHIFT+B" command="_udxX7UjqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udj8cUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_udj8hUjqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udj8ckjqEeSGvY5Z8GTn6g" keySequence="CTRL+C" command="_udu71kjqEeSGvY5Z8GTn6g"/>
</bindingTables>
<bindingTables xmi:id="_udj8c0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.console" bindingContext="_udj8gkjqEeSGvY5Z8GTn6g">
<bindings xmi:id="_udj8dEjqEeSGvY5Z8GTn6g" keySequence="CTRL+D" command="_udvi1kjqEeSGvY5Z8GTn6g"/>
</bindingTables>
<rootContext xmi:id="_udj8dUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.contexts.dialogAndWindow" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs and Windows" description="Either a dialog or a window is open">
<children xmi:id="_udj8dkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.platform" name="In Windows" description="A window is open">
<children xmi:id="_udj8d0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.platform" name="%bindingcontext.name.bindingView"/>
<children xmi:id="_udj8eEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging programs">
<children xmi:id="_udj8eUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.debug.ui.debugging" name="Debugging Java" description="Debugging Java programs"/>
<children xmi:id="_udj8ekjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/>
</children>
<children xmi:id="_udj8e0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/>
<children xmi:id="_udj8fEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/>
<children xmi:id="_udj8fUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context">
<children xmi:id="_udj8fkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ant.ui.AntEditorScope" name="Editing Ant Buildfiles" description="Editing Ant Buildfiles Context"/>
<children xmi:id="_udj8f0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.pdeEditorContext" name="PDE editor" description="The context used by PDE editors"/>
<children xmi:id="_udj8gEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.propertiesEditorScope" name="Editing Properties Files" description="Editing Properties Files Context"/>
<children xmi:id="_udj8gUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.javaEditorScope" name="Editing Java Source" description="Editing Java Source Context"/>
</children>
<children xmi:id="_udj8gkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O console"/>
<children xmi:id="_udj8g0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In memory view"/>
<children xmi:id="_udj8hEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View"/>
<children xmi:id="_udj8hUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/>
<children xmi:id="_udj8hkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/>
</children>
<children xmi:id="_udj8h0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs" description="A dialog is open"/>
</rootContext>
<rootContext xmi:id="_udj8iEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/>
<rootContext xmi:id="_udj8iUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/>
<rootContext xmi:id="_udj8ikjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" name="Editor Breadcrumb Navigation" description="Editor Breadcrumb Navigation Context"/>
<descriptors xmi:id="_udj8i0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.e4.ui.compatibility.editor" allowMultiple="true" category="org.eclipse.e4.primaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor">
<tags>Editor</tags>
</descriptors>
<descriptors xmi:id="_udj8jEjqEeSGvY5Z8GTn6g" elementId="org.eclim.eclipse.ui.EclimdView" label="eclimd" iconURI="platform:/plugin/org.eclim/resources/images/vim.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Eclim</tags>
</descriptors>
<descriptors xmi:id="_udj8jUjqEeSGvY5Z8GTn6g" elementId="org.eclim.eclipse.ui.VimpluginDebugView" label="Vimplugin Debug Console" iconURI="platform:/plugin/org.eclim/resources/images/vim.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Eclim</tags>
</descriptors>
<descriptors xmi:id="_udj8jkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ant.ui.views.AntView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Ant</tags>
</descriptors>
<descriptors xmi:id="_udj8j0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.DebugView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_view.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_udj8kEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.BreakpointView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/breakpoint_view.png" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_udj8kUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.VariableView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/variable_view.png" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_udj8kkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.ExpressionView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/watchlist_view.png" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_udj8k0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.RegisterView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/register_view.png" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_udj8lEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.ModuleView" label="Modules" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/module_view.png" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_udj8lUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.MemoryView" label="Memory" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/memory_view.png" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_udj8lkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_udj8l0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.StagingView" label="Git Staging" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/staging.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_udj8mEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.InteractiveRebaseView" label="Git Interactive Rebase" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/rebase_interactive.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_udkjgEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.CompareTreeView" label="Git Tree Compare" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/obj16/gitrepository.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_udkjgUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.ReflogView" label="Git Reflog" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/reflog.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_udkjgkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.help.ui.HelpView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Help</tags>
</descriptors>
<descriptors xmi:id="_udkjg0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.debug.ui.DisplayView" label="Display" iconURI="platform:/plugin/org.eclipse.jdt.debug.ui/icons/full/etool16/disp_sbook.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_udkjhEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.junit.ResultView" label="JUnit" iconURI="platform:/plugin/org.eclipse.jdt.junit/icons/full/eview16/junit.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_udkjhUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.PackageExplorer" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_udkjhkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.TypeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/class_hi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_udkjh0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.ProjectsView" label="Projects" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/projects.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Java Browsing</tags>
</descriptors>
<descriptors xmi:id="_udkjiEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.PackagesView" label="Packages" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/packages.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Java Browsing</tags>
</descriptors>
<descriptors xmi:id="_udkjiUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.TypesView" label="Types" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/types.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Java Browsing</tags>
</descriptors>
<descriptors xmi:id="_udkjikjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.MembersView" label="Members" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/members.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Java Browsing</tags>
</descriptors>
<descriptors xmi:id="_udkji0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/call_hierarchy.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_udkjjEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.texteditor.TemplatesView" label="Templates" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/templates.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udkjjUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_udkjjkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.JavadocView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_udkjj0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.api.tools.ui.views.apitooling.views.apitoolingview" label="API Tools" iconURI="platform:/plugin/org.eclipse.pde.api.tools.ui/icons/full/obj16/api_tools.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:API Tools</tags>
</descriptors>
<descriptors xmi:id="_udkjkEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.runtime.RegistryBrowser" label="Plug-in Registry" iconURI="platform:/plugin/org.eclipse.pde.runtime/icons/eview16/registry.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_udkjkUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.PluginsView" label="Plug-ins" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/eview16/plugin_depend.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_udkjkkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.DependenciesView" label="Plug-in Dependencies" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/req_plugins_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_udkjk0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.TargetPlatformState" label="Target Platform State" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/target_profile_xml_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_udkjlEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.ImageBrowserView" label="Plug-in Image Browser" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/psearch_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_udkjlUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.search.SearchResultView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udkjlkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.search.ui.views.SearchView" label="Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udkjl0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.ccvs.ui.RepositoriesView" label="CVS Repositories" iconURI="platform:/plugin/org.eclipse.team.cvs.ui/icons/full/eview16/repo_rep.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:CVS</tags>
</descriptors>
<descriptors xmi:id="_udkjmEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.ccvs.ui.EditorsView" label="CVS Editors" iconURI="platform:/plugin/org.eclipse.team.cvs.ui/icons/full/eview16/rep_editors_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:CVS</tags>
</descriptors>
<descriptors xmi:id="_udkjmUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.sync.views.SynchronizeView" label="Synchronize" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/synch_synch.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Team</tags>
</descriptors>
<descriptors xmi:id="_udkjmkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.ui.GenericHistoryView" label="History" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/history_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Team</tags>
</descriptors>
<descriptors xmi:id="_udkjm0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.internal.introview" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udkjnEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.browser.view" label="Internal Web Browser" iconURI="platform:/plugin/org.eclipse.ui.browser/icons/obj16/internal_browser.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udkjnUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Help</tags>
</descriptors>
<descriptors xmi:id="_udkjnkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.console.ConsoleView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console/icons/full/cview16/console_view.png" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udkjn0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.ProgressView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/pview.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udkjoEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.ResourceNavigator" label="Navigator" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/filenav_nav.png" category="org.eclipse.e4.primaryNavigationStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udkjoUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.BookmarkView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/bkmrk_nav.png" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udkjokjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.TaskList" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/tasks_tsk.png" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udkjo0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.ProblemView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udkjpEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.AllMarkersView" label="Markers" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udlKkEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigator.ProjectExplorer" label="Project Explorer" iconURI="platform:/plugin/org.eclipse.ui.navigator.resources/icons/full/eview16/resource_persp.gif" category="org.eclipse.e4.primaryNavigationStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udlKkUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.PropertySheet" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.png" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udlKkkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.ContentOutline" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/outline_co.png" category="org.eclipse.e4.secondaryNavigationStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_udlKk0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.runtime.LogView" label="Error Log" iconURI="platform:/plugin/org.eclipse.ui.views.log/icons/eview16/error_log.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<commands xmi:id="_udttckjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.command.nextpage" commandName="Next Page of Memory" description="Load next page of memory" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttc0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.implementors.in.project" commandName="Implementors in Project" description="Search for implementors of the selected interface in the enclosing project" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttdEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.removeTrailingWhitespace" commandName="Remove Trailing Whitespace" description="Removes the trailing whitespace of each line" category="_udz0EkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttdUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.GenerateDiff" commandName="Create Patch" description="Compare your workspace contents with the server and generate a diff file that can be used as a patch file." category="_udzNOEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttdkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in Java editors" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttd0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.runtime.spy.commands.spyCommand" commandName="Plug-in Selection Spy" description="Show the Plug-in Spy" category="_udz0EEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udtteEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.debug.ui.commands.AllInstances" commandName="All Instances" description="View all instances of the selected type loaded in the target VM" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udtteUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.showChangeRulerInformation" commandName="Show Quick Diff Ruler Tooltip" description="Displays quick diff or revision information for the caret line in a focused hover" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttekjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.use.supertype" commandName="Use Supertype Where Possible" description="Change occurrences of a type to use a supertype instead" category="_udz0HEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udtte0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewClone" commandName="Clone a Git Repository" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttfEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.select.textStart" commandName="Select Text Start" description="Select to the beginning of the text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttfUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.cheatsheets.openCheatSheetURL" commandName="Open Cheat Sheet from URL" description="Open a Cheat Sheet from file at a specified URL." category="_udz0F0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udttfkjqEeSGvY5Z8GTn6g" elementId="cheatSheetId" name="Identifier" optional="false"/>
<parameters xmi:id="_udttf0jqEeSGvY5Z8GTn6g" elementId="name" name="Name" optional="false"/>
<parameters xmi:id="_udttgEjqEeSGvY5Z8GTn6g" elementId="url" name="URL" optional="false"/>
</commands>
<commands xmi:id="_udttgUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewRefresh" commandName="Refresh" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttgkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttg0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.JavaBrowsingPerspective" commandName="Java Browsing" description="Show the Java Browsing perspective" category="_udzNN0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udtthEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.project.buildAll" commandName="Build All" description="Build all projects" category="_udzNPUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udtthUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.lockToolBar" commandName="Lock the Toolbars" description="Lock the Toolbars" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udtthkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All" description="Expand the current tree" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udtth0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.file.import" commandName="Import" description="Import" category="_udz0EkjqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udttiEjqEeSGvY5Z8GTn6g" elementId="importWizardId" name="Import Wizard"/>
</commands>
<commands xmi:id="_udttiUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.select.lineEnd" commandName="Select Line End" description="Select to the end of the line of text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttikjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.help.helpSearch" commandName="Help Search" description="Open the help search" category="_udz0F0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udtti0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.CompareWithHead" commandName="Compare with HEAD Revision" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttjEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.importFromRepository" commandName="Import Plug-in from a Repository" description="Imports a plug-in from a source repository" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttjUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.smartEnterInverse" commandName="Insert Line Above Current Line" description="Adds a new line above the current line" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttjkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.externalTools.commands.OpenExternalToolsConfigurations" commandName="External Tools..." description="Open external tools launch configuration dialog" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttj0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.goto.windowEnd" commandName="Window End" description="Go to the end of the window" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttkEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.update" commandName="Update" description="Update resources with new content from the repository" category="_udzNOEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttkUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.ui.TeamSynchronizingPerspective" commandName="Team Synchronizing" description="Open the Team Synchronizing Perspective" category="_udzNN0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttkkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.help.ui.indexcommand" commandName="Index" description="Show Keyword Index" category="_udz0F0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttk0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.StepOver" commandName="Step Over" description="Step over" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttlEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ant.ui.renameInFile" commandName="Rename In File" description="Renames all references within the same buildfile" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttlUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewOpenInEditor" commandName="Open in Editor" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttlkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.RenameBranch" commandName="Rename Branch..." category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttl0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttmEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.addMemoryMonitor" commandName="Add Memory Block" description="Add memory block" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttmUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewRebase" commandName="Rebase on" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttmkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.revertToSaved" commandName="Revert to Saved" description="Revert to the last saved state" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttm0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.Rebase" commandName="Rebase on" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttnEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor" description="Pin the current editor" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttnUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.correction.encapsulateField.assist" commandName="Quick Assist - Create getter/setter for field" description="Invokes quick assist and selects 'Create getter/setter for field'" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttnkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.implement.occurrences" commandName="Search Implement Occurrences in File" description="Search for implement occurrences of a selected type" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttn0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttoEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttoUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.commit.Reword" commandName="Reword Commit" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttokjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udtto0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.try.catch" commandName="Surround with try/catch Block" description="Surround the selected text with a try/catch block" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttpEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.convert.anonymous.to.nested" commandName="Convert Anonymous Class to Nested" description="Convert an anonymous class to a nested class" category="_udz0HEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttpUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.ShowRepositoriesView" commandName="Show Git Repositories View" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttpkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.Tag" commandName="Tag" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttp0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.folding.restore" commandName="Reset Structure" description="Resets the folding structure" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttqEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.file.restartWorkbench" commandName="Restart" description="Restart the workbench" category="_udz0EkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttqUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.file.export" commandName="Export" description="Export" category="_udz0EkjqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udttqkjqEeSGvY5Z8GTn6g" elementId="exportWizardId" name="Export Wizard"/>
</commands>
<commands xmi:id="_udttq0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewConfigurePush" commandName="Configure Push..." category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttrEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.occurrences.in.file.quickMenu" commandName="Show Occurrences in File Quick Menu" description="Shows the Occurrences in File quick menu" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttrUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.select.lineDown" commandName="Select Line Down" description="Extend the selection to the next line of text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttrkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.resetPerspective" commandName="Reset Perspective" description="Reset the current perspective to its default state" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttr0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.PushHeadToGerrit" commandName="Push Current Head to Gerrit" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttsEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource" commandName="Rename Resource" description="Rename the selected resource and notify LTK participants." category="_udz0GkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udttsUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.showContextMenu" commandName="Show Context Menu" description="Show the context menu" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUgEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.stash.drop" commandName="Delete Stashed Commit..." category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUgUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.searchTargetRepositories" commandName="Add Artifact to Target Platform" description="Add an artifact to your target platform" category="_udz0E0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_uduUgkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.searchTargetRepositories.term" name="The initial search pattern for the artifact search dialog"/>
</commands>
<commands xmi:id="_uduUg0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.savePerspective" commandName="Save Perspective As" description="Save the current perspective" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUhEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.ConfigureUpstreamPush" commandName="Configure Upstream Push" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUhUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.showInformation" commandName="Show Tooltip Description" description="Displays information for the current caret location in a focused hover" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUhkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.ide.markCompleted" commandName="Mark Completed" description="Mark the selected tasks as completed" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUh0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.ConfigureFetch" commandName="Configure Upstream Fetch" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUiEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.nextMemoryBlock" commandName="Next Memory Monitor" description="Show renderings from next memory monitor." category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUiUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.toggleOverwrite" commandName="Toggle Overwrite" description="Toggle overwrite mode" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUikjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.goto.textEnd" commandName="Text End" description="Go to the end of the text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUi0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.specific_content_assist.command" commandName="Content Assist" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_udzNQEjqEeSGvY5Z8GTn6g">
<parameters xmi:id="_uduUjEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.specific_content_assist.category_id" name="type" optional="false"/>
</commands>
<commands xmi:id="_uduUjUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.copy.qualified.name" commandName="Copy Qualified Name" description="Copy a fully qualified name to the system clipboard" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUjkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.project" commandName="Write Access in Project" description="Search for write references to the selected element in the enclosing project" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUj0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.Squash" commandName="Squash Commits" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUkEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.showKeyAssist" commandName="Show Key Assist" description="Show the key assist dialog" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUkUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.delete" commandName="Delete" description="Delete the selection" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUkkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.file.saveAs" commandName="Save As" description="Save the current contents to another location" category="_udz0EkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUk0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewChangeCredentials" commandName="Change Credentials" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUlEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.ide.showInSystemExplorer" commandName="Show In (System Explorer)" description="Show in system's explorer (file manager)" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUlUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.try.multicatch" commandName="Surround with try/multi-catch Block" description="Surround the selected text with a try/multi-catch block" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUlkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.search.ui.performTextSearchWorkspace" commandName="Find Text in Workspace" description="Searches the files in the workspace for specific text." category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUl0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.implementors.in.working.set" commandName="Implementors in Working Set" description="Search for implementors of the selected interface in a working set" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUmEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.JavaPerspective" commandName="Java" description="Show the Java perspective" category="_udzNN0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUmUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUmkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.CreateTag" commandName="Create Tag..." category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUm0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUnEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.correction.changeToStatic" commandName="Quick Fix - Change to static access" description="Invokes quick assist and selects 'Change to static access'" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUnUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.override.methods" commandName="Override/Implement Methods" description="Override or implement methods from super types" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUnkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUn0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUoEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewPaste" commandName="Paste Repository Path or URI" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUoUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUokjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.correction.convertAnonymousToLocal.assist" commandName="Quick Assist - Convert anonymous to local class" description="Invokes quick assist and selects 'Convert anonymous to local class'" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUo0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.debug" commandName="Debug OSGi Framework" description="Debug OSGi Framework" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUpEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUpUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUpkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.Ignore" commandName="Ignore" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUp0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewCopyPath" commandName="Copy Path to Clipboard" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUqEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb" commandName="Toggle Java Editor Breadcrumb" description="Toggle the Java editor breadcrumb" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUqUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUqkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.RemoveFromIndex" commandName="Remove from Git Index" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUq0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUrEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.goto.lineUp" commandName="Line Up" description="Go up one line of text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUrUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.file.newQuickMenu" commandName="New menu" description="Open the New menu" category="_udz0EkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUrkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.deleteNext" commandName="Delete Next" description="Delete the next character" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUr0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.deleteNextWord" commandName="Delete Next Word" description="Delete the next word" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUsEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.working.set" commandName="Write Access in Working Set" description="Search for write references to the selected element in a working set" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUsUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.undo" commandName="Undo" description="Undo the last operation" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUskjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.back" commandName="Back" description="Navigate back" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUs0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.DebugLast" commandName="Debug" description="Launch in debug mode" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUtEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.ToggleLineBreakpoint" commandName="Toggle Line Breakpoint" description="Creates or removes a line breakpoint" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUtUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.editors.lineNumberToggle" commandName="Show Line Numbers" description="Toggle display of line numbers" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUtkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.ToggleStepFilters" commandName="Use Step Filters" description="Toggles enablement of debug step filters" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUt0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesLinkWithSelection" commandName="Link with Selection" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUuEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.workspace" commandName="Read Access in Workspace" description="Search for read references to the selected element in the workspace" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUuUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUukjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.newEditor" commandName="New Editor" description="Open another editor on the active editor's input" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUu0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.Fetch" commandName="Fetch" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUvEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.org.eclipse.egit.ui.AbortRebase" commandName="Abort Rebase" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUvUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.SetQuickdiffBaseline" commandName="Set quickdiff baseline" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUvkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.goto.wordPrevious" commandName="Previous Word" description="Go to the previous word" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUv0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.ShowBlame" commandName="Show Annotations" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUwEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewDelete" commandName="Delete Repository" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUwUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.recenter" commandName="Recenter" description="Scroll cursor line to center, top and bottom" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUwkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.help.installationDialog" commandName="Installation Information" description="Open the installation dialog" category="_udz0F0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUw0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.Pull" commandName="Pull" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUxEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.CompareWithIndex" commandName="Compare with Git Index" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUxUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.shiftRight" commandName="Shift Right" description="Shift a block of text to the right" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUxkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.tag" commandName="Tag as Version" description="Tag the resources with a CVS version tag" category="_udzNOEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_uduUx0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.file.refresh" commandName="Refresh" description="Refresh the selected items" category="_udz0EkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7kEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.Merge" commandName="Merge" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7kUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7kkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.working.set" commandName="References in Working Set" description="Search for references to the selected element in a working set" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7k0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.search.ui.performTextSearchWorkingSet" commandName="Find Text in Working Set" description="Searches the files in the working set for specific text." category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7lEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.delete.line.to.end" commandName="Delete to End of Line" description="Delete to the end of a line of text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7lUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.CreateBranch" commandName="Create Branch" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7lkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_udz0HEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7l0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor" description="Switch to the next editor" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7mEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.factory" commandName="Introduce Factory" description="Introduce a factory method to encapsulate invocation of the selected constructor" category="_udz0HEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7mUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.ShowBlame" commandName="Show Annotations" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7mkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.forward" commandName="Forward" description="Navigate forward" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7m0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.goto.pageUp" commandName="Page Up" description="Go up one page" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7nEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.updateSwitch" commandName="Switch to Another Branch or Version" description="Switch to Another Branch or Version" category="_udzNOEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7nUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.file.closeAllSaved" commandName="Close All Saved" description="Close all saved editors" category="_udz0EkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7nkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected method" category="_udz0HEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7n0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.openManifest" commandName="Open Manifest" description="Open the plug-in manifest" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7oEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.OpenRunConfigurations" commandName="Run..." description="Open run launch configuration dialog" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7oUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.AssumeUnchanged" commandName="Assume Unchanged" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7okjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView" commandName="Show Java Element Type Hierarchy" description="Show a Java element in the Type Hierarchy view" category="_udz0GUjqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udu7o0jqEeSGvY5Z8GTn6g" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_udu7pEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.deletePreviousWord" commandName="Delete Previous Word" description="Delete the previous word" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7pUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.deletePrevious" commandName="Delete Previous" description="Delete the previous character" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7pkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.SkipAllBreakpoints" commandName="Skip All Breakpoints" description="Sets whether or not any breakpoint should suspend execution" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7p0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.correction.extractLocalNotReplaceOccurrences.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7qEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.set.mark" commandName="Set Mark" description="Set the mark" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7qUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ltk.ui.refactor.show.refactoring.history" commandName="Open Refactoring History " description="Opens the refactoring history" category="_udz0HEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7qkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.RenameBranch" commandName="Rename Branch" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7q0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.OpenCommit" commandName="Open Git Commit" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7rEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard" commandName="Eclipse Marketplace" description="Show the Eclipse Marketplace wizard" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7rUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.AddToIndex" commandName="Add to Git Index" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7rkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.file.exit" commandName="Exit" description="Exit the application" category="_udz0EkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7r0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.ConfigurePush" commandName="Configure Upstream Push" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7sEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.customizePerspective" commandName="Customize Perspective" description="Customize the current perspective" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7sUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.showInQuickMenu" commandName="Show In..." description="Open the Show In menu" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7skjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.hierarchy" commandName="Read Access in Hierarchy" description="Search for read references of the selected element in its hierarchy" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7s0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.ide.deleteCompleted" commandName="Delete Completed Tasks" description="Delete the tasks marked as completed" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7tEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.DebugPerspective" commandName="Debug" description="Open the debug perspective" category="_udzNN0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7tUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.change.type" commandName="Generalize Declared Type" description="Change the declaration of a selected variable to a more general type consistent with usage" category="_udz0HEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7tkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.rename" commandName="Rename" description="Rename the selected item" category="_udz0EkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7t0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.CheckoutCommand" commandName="Checkout" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7uEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ltk.ui.refactoring.commands.deleteResources" commandName="Delete Resources" description="Delete the selected resources and notify LTK participants." category="_udz0GkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7uUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.next" commandName="Next" description="Navigate to the next item" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7ukjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7u0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_udzNPUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7vEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.project" commandName="References in Project" description="Search for references to the selected element in the enclosing project" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7vUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.occurrences.in.file" commandName="Search All Occurrences in File" description="Search for all occurrences of the selected element in its declaring file" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7vkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.open.implementation" commandName="Open Implementation" description="Opens the Implementations of a method in its hierarchy" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7v0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.correction.extractMethodInplace.assist" commandName="Quick Assist - Extract method" description="Invokes quick assist and selects 'Extract to method'" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7wEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.workspace" commandName="Declaration in Workspace" description="Search for declarations of the selected element in the workspace" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7wUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.internal.reflog.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7wkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7w0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.project" commandName="Read Access in Project" description="Search for read references to the selected element in the enclosing project" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7xEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.ShowHistory" commandName="Show in History" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7xUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.openDependencies" commandName="Open Plug-in Dependencies" description="Opens the plug-in dependencies view for the current plug-in" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7xkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_udz0GEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7x0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.replaceWithTag" commandName="Replace With Another Branch or Version" description="Replace with Branch or Version on the CVS Server" category="_udzNOEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7yEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.junit.junitShortcut.rerunFailedFirst" commandName="Rerun JUnit Test - Failures First" description="Rerun JUnit Test - Failures First" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7yUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7ykjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_udzNOUjqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udu7y0jqEeSGvY5Z8GTn6g" elementId="plugin" name="Plugin"/>
<parameters xmi:id="_udu7zEjqEeSGvY5Z8GTn6g" elementId="path" name="Path"/>
</commands>
<commands xmi:id="_udu7zUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.stash.apply" commandName="Apply Stashed Changes" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7zkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.ContinueRebase" commandName="Continue Rebase" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu7z0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.Push" commandName="Push" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu70EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.compare.copyAllLeftToRight" commandName="Copy All from Left to Right" description="Copy All Changes from Left to Right" category="_udz0GEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu70UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters" commandName="Show Whitespace Characters" description="Shows whitespace characters in current text editor" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu70kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.preferences" commandName="Preferences" description="Open the preferences dialog" category="_udzNOUjqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udu700jqEeSGvY5Z8GTn6g" elementId="preferencePageId" name="Preference Page"/>
</commands>
<commands xmi:id="_udu71EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.selectAll" commandName="Select All" description="Select all" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu71UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.file.close" commandName="Close" description="Close the active editor" category="_udz0EkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udu71kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.internal.reflog.CopyCommand" commandName="Copy SHA-1" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvioEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.newWizard" commandName="New" description="Open the New item wizard" category="_udz0EkjqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udvioUjqEeSGvY5Z8GTn6g" elementId="newWizardId" name="New Wizard"/>
</commands>
<commands xmi:id="_udviokjqEeSGvY5Z8GTn6g" elementId="org.eclipse.help.ui.ignoreMissingPlaceholders" commandName="Do not warn of missing documentation" description="Sets the help preferences to no longer report a warning about the current set of missing documents." category="_udz0F0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvio0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or method" category="_udz0HEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvipEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_udz0F0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvipUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.showHistory" commandName="Show History" description="Show History" category="_udzNOEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvipkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvip0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.Revert" commandName="Revert Commit" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviqEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.project" commandName="Declaration in Project" description="Search for declarations of the selected element in the enclosing project" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviqUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewCreateBranch" commandName="Create Branch..." category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviqkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviq0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ant.ui.openExternalDoc" commandName="Open External Documentation" description="Open the External documentation for the current task in the Ant editor" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvirEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.JavaHierarchyPerspective" commandName="Java Type Hierarchy" description="Show the Java Type Hierarchy perspective" category="_udzNN0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvirUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.infer.type.arguments" commandName="Infer Generic Type Arguments" description="Infer type arguments for references to generic classes and remove unnecessary casts" category="_udz0HEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvirkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.ide.copyConfigCommand" commandName="Copy Configuration Data To Clipboard" description="Copies the configuration data (system properties, installed bundles, etc) to the clipboard." category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvir0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvisEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.indent" commandName="Correct Indentation" description="Corrects the indentation of the selected lines" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvisUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.exception.occurrences" commandName="Search Exception Occurrences in File" description="Search for exception occurrences of a selected exception type" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviskjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvis0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_udz0GUjqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udvitEjqEeSGvY5Z8GTn6g" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/>
</commands>
<commands xmi:id="_udvitUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.Synchronize" commandName="Synchronize" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvitkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.debug.ui.commands.InstanceCount" commandName="Instance Count" description="View the instance count of the selected type loaded in the target VM" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvit0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviuEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.help.helpContents" commandName="Help Contents" description="Open the help contents" category="_udz0F0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviuUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify field access" description="Invokes quick assist and selects 'Qualify field access'" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviukjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.file.saveAll" commandName="Save All" description="Save all current contents" category="_udz0EkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviu0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.externalizeStrings" commandName="Externalize Strings in Plug-ins" description="Extract translatable strings from plug-in files" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvivEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.GarbageCollect" commandName="Collect Garbage" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvivUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.correction.assignToLocal.assist" commandName="Quick Assist - Assign to local variable" description="Invokes quick assist and selects 'Assign to local variable'" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvivkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.hierarchy" commandName="References in Hierarchy" description="Search for references of the selected element in its hierarchy" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviv0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.debug" commandName="Debug Eclipse Application" description="Debug Eclipse Application" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviwEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.select.textEnd" commandName="Select Text End" description="Select to the end of the text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviwUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.delete.line" commandName="Delete Line" description="Delete a line of text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviwkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.showViewMenu" commandName="Show View Menu" description="Show the view menu" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviw0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.PushBranch" commandName="Push Branch..." category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvixEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvixUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.findIncremental" commandName="Incremental Find" description="Incremental find" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvixkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.search.ui.performTextSearchProject" commandName="Find Text in Project" description="Searches the files in the project for specific text." category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvix0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.edit.text.format" commandName="Format Source" description="Format a PDE Source Page" category="_udz0FUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviyEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.previousEditor" commandName="Previous Editor" description="Switch to the previous editor" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviyUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.DeleteBranch" commandName="Delete Branch..." category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviykjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.commands.openElementInEditor" commandName="Open Java Element" description="Open a Java element in its editor" category="_udz0GUjqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udviy0jqEeSGvY5Z8GTn6g" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_udvizEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.maximizePart" commandName="Maximize Active View or Editor" description="Toggles maximize/restore state of active view or editor" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvizUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.ide.configureColumns" commandName="Configure Columns..." description="Configure the columns in the markers view" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvizkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.debug.ui.commands.AddClassPrepareBreakpoint" commandName="Add Class Load Breakpoint" description="Add a class load breakpoint" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udviz0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.editors.revisions.id.toggle" commandName="Toggle Revision Id Display" description="Toggles the display of the revision id" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi0EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.folding.collapse_all" commandName="Collapse All" description="Collapses all folded regions" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi0UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.commit.CherryPick" commandName="Cherry Pick" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi0kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.run" commandName="Run OSGi Framework" description="Run OSGi Framework" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi00jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.perspectives.showPerspective" commandName="Show Perspective" description="Show a particular perspective" category="_udzNN0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udvi1EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId" name="Parameter"/>
<parameters xmi:id="_udvi1UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.perspectives.showPerspective.newWindow" name="In New Window"/>
</commands>
<commands xmi:id="_udvi1kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.eof" commandName="EOF" description="Send end of file" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi10jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi2EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.editors.quickdiff.revert" commandName="Revert Lines" description="Revert the current selection, block or deleted lines" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi2UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.previousSubTab" commandName="Previous Sub-Tab" description="Switch to the previous sub-tab" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi2kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.method.exits" commandName="Search Method Exit Occurrences in File" description="Search for method exit occurrences of a selected return type" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi20jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.smartEnter" commandName="Insert Line Below Current Line" description="Adds a new line below the current line" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi3EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.goto.pageDown" commandName="Page Down" description="Go down one page" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi3UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.Reset" commandName="Reset..." category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi3kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.goto.windowStart" commandName="Window Start" description="Go to the start of the window" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi30jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into" description="Navigate into the selected item" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi4EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.contentAssist.proposals" commandName="Content Assist" description="Content Assist" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi4UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.folding.expand_all" commandName="Expand All" description="Expands all folded regions" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi4kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab" description="Switch to the next tab" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi40jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.Discard" commandName="Replace with File in Git Index" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi5EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.ide.OpenMarkersView" commandName="Open Another" description="Open another view" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi5UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.Terminate" commandName="Terminate" description="Terminate" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi5kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.createAntBuildFile" commandName="Create Ant Build File" description="Creates an Ant build file for the current project" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udvi50jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.NoAssumeUnchanged" commandName="No Assume Unchanged" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJsEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand" commandName="Plug-in Menu Spy" description="Show the Plug-in Spy" category="_udz0EEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJsUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.select.windowEnd" commandName="Select Window End" description="Select to the end of the window" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJskjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.command.gotoaddress" commandName="Go to Address" description="Go to Address" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJs0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.switchToEditor" commandName="Switch to Editor" description="Switch to an editor" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJtEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.Suspend" commandName="Suspend" description="Suspend" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJtUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.command.shareProject" commandName="Share with Git" description="Share the project using Git" category="_udz0E0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udwJtkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.command.projectNameParameter" name="Project" optional="false"/>
</commands>
<commands xmi:id="_udwJt0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.previousView" commandName="Previous View" description="Switch to the previous view" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJuEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.hierarchy" commandName="Write Access in Hierarchy" description="Search for write references of the selected element in its hierarchy" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJuUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.linkWithEditor" commandName="Toggle Link with Editor " description="Toggles linking of a view's selection with the active editor's selection" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJukjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.closeRendering" commandName="Close Rendering" description="Close the selected rendering." category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJu0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.commands.showElementInPackageView" commandName="Show Java Element in Package Explorer" description="Select Java element in the Package Explorer view" category="_udz0GUjqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udwJvEjqEeSGvY5Z8GTn6g" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_udwJvUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize resources in the workspace with another location" category="_udz0FkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJvkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.help.displayHelp" commandName="Display Help" description="Display a Help topic" category="_udz0F0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udwJv0jqEeSGvY5Z8GTn6g" elementId="href" name="Help topic href"/>
</commands>
<commands xmi:id="_udwJwEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a Java editor" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJwUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.previousPerspective" commandName="Previous Perspective" description="Switch to the previous perspective" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJwkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.Branch" commandName="Branch" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJw0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.junit.junitShortcut.debug" commandName="Debug JUnit Test" description="Debug JUnit Test" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJxEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.project.closeProject" commandName="Close Project" description="Close the selected project" category="_udzNPUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJxUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.Disconnect" commandName="Disconnect" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJxkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.correction.assignParamToField.assist" commandName="Quick Assist - Assign parameter to field" description="Invokes quick assist and selects 'Assign parameter to field'" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJx0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.commitAll" commandName="Commit All Outgoing Changes" description="Commit all outgoing changes to the repository" category="_udzNOEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJyEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.cvsPerspective" commandName="CVS Repository Exploring" description="Open the CVS Repository Exploring Perspective" category="_udzNN0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJyUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.FetchGerritChange" commandName="Fetch From Gerrit" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJykjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.folding.expand" commandName="Expand" description="Expands the folded region at the current selection" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJy0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.junit.junitShortcut.rerunLast" commandName="Rerun JUnit Test" description="Rerun JUnit Test" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJzEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewRemove" commandName="Remove Repository" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJzUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.PushTags" commandName="Push Tags..." category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJzkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJz0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.goto.lineStart" commandName="Line Start" description="Go to the start of the line of text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ0EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.help.ui.closeTray" commandName="Close User Assistance Tray" description="Close the user assistance tray containing context help information and cheat sheets." category="_udz0F0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ0UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.junit.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ0kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.project.properties" commandName="Properties" description="Display the properties of the selected item's project " category="_udzNPUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ00jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode" commandName="Toggle Block Selection" description="Toggle block / column selection in the current text editor" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ1EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.file.save" commandName="Save" description="Save the current contents" category="_udz0EkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ1UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.CompareWithWorkingTree" commandName="Compare with Working Directory" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ1kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.checkout" commandName="Checkout from CVS" description="Checkout from CVS" category="_udzNOEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ10jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ant.ui.open.declaration.command" commandName="Open Declaration" description="Opens the Ant editor on the referenced element" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ2EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.file.closePart" commandName="Close Part" description="Close the active workbench part" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ2UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.ToggleWatchpoint" commandName="Toggle Watchpoint" description="Creates or removes a watchpoint" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ2kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.commit.Squash" commandName="Squash Commits" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ20jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureBranch" commandName="Configure Branch" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ3EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.compareWithRemote" commandName="Compare With Latest from Repository" description="Compare with Content on CVS Server" category="_udzNOEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ3UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ3kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ30jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ltk.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_udz0HEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ4EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals" commandName="Quick Fix" description="Suggest possible fixes for a problem" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ4UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.editors.revisions.rendering.cycle" commandName="Cycle Revision Coloring Mode" description="Cycles through the available coloring modes for revisions" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ4kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.debug.ui.commands.Watch" commandName="Watch" description="Create new watch expression" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ40jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.showRulerContextMenu" commandName="Show Ruler Context Menu" description="Show the context menu for the ruler" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ5EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.minimizePart" commandName="Minimize Active View or Editor" description="Minimizes the active view or editor" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ5UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint" commandName="Toggle Method Breakpoint" description="Creates or removes a method breakpoint" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ5kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.Untrack" commandName="Untrack" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ50jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.part.nextPage" commandName="Next Page" description="Switch to the next page" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ6EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.ReplaceWithRef" commandName="Replace with branch, tag, or reference" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ6UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.delete.line.to.beginning" commandName="Delete to Beginning of Line" description="Delete to the beginning of a line of text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ6kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.backwardHistory" commandName="Backward History" description="Move backward in the editor navigation history" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ60jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.swap.mark" commandName="Swap Mark" description="Swap the mark with the cursor position" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ7EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the compilation unit" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ7UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.replaceWithRevision" commandName="Replace With Revision" description="Replace with Revision on CVS Server" category="_udzNOEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ7kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.project.buildProject" commandName="Build Project" description="Build the selected project" category="_udzNPUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ70jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ant.ui.antShortcut.run" commandName="Run Ant Build" description="Run Ant Build" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ8EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.compareWithRevision" commandName="Compare With Revision" description="Compare with Revision on CVS Server" category="_udzNOEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ8UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.showSystemMenu" commandName="Show System Menu" description="Show the system menu" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ8kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwJ80jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.lowerCase" commandName="To Lower Case" description="Changes the selection to lower case" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwwwEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.self.encapsulate.field" commandName="Encapsulate Field" description="Create getting and setting methods for the field and use only those to access the field" category="_udz0HEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwwwUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.select.pageDown" commandName="Select Page Down" description="Select to the bottom of the page" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwwwkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.newRendering" commandName="New Rendering" description="Add a new rendering." category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwww0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog" commandName="Show Bundle Catalog" category="_udz0E0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udwwxEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.equinox.p2.ui.discovery.commands.DirectoryParameter" name="Directory URL"/>
<parameters xmi:id="_udwwxUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.equinox.p2.ui.discovery.commands.TagsParameter" name="Tags"/>
</commands>
<commands xmi:id="_udwwxkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.MergeTool" commandName="Merge Tool" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwwx0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.SimplePush" commandName="Push to Upstream" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwwyEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.open.hyperlink" commandName="Open Hyperlink" description="Opens the hyperlink at the caret location or opens a chooser if more than one hyperlink is available" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwwyUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.OpenInTextEditorCommand" commandName="Open in Text Editor" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwwykjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.openLocalFile" commandName="Open File..." description="Open a file" category="_udz0EkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwwy0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.splitEditor" commandName="Toggle Split Editor" description="Split or join the currently active editor." category="_udzNOUjqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udwwzEjqEeSGvY5Z8GTn6g" elementId="Splitter.isHorizontal" name="Orientation" optional="false"/>
</commands>
<commands xmi:id="_udwwzUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.compare.selectPreviousChange" commandName="Select Previous Change" description="Select Previous Change" category="_udz0GEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwwzkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" commandName="Show Selected Element Only" description="Show Selected Element Only" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwwz0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww0EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww0UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.Reset" commandName="Reset..." category="_udz0E0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udww0kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.ResetMode" name="Reset mode" optional="false"/>
</commands>
<commands xmi:id="_udww00jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_udz0HEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww1EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.addAllPluginsToJavaSearch" commandName="Add All Plug-ins to Java Search" description="Adds all plug-ins in the target platform to java search" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww1UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RebaseInteractiveCurrent" commandName="%RebaseInteractiveCurrentHandler.name" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww1kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.branch" commandName="Branch" description="Branch" category="_udzNOEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww10jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.debug.ui.commands.AddExceptionBreakpoint" commandName="Add Java Exception Breakpoint" description="Add a Java exception breakpoint" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww2EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.CompareVersionsInTree" commandName="Compare in Tree" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww2UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_udzNPUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww2kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww20jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.commit.Edit" commandName="Edit Commit" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww3EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww3UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.api.tools.ui.remove.filters" commandName="Remove &API Problem Filters..." description="Remove API problem filters for this project" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww3kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww30jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.debug.ui.commands.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww4EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.quickdiff.toggle" commandName="Quick Diff Toggle" description="Toggles quick diff information display on the line number ruler" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww4UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.ui.applyPatch" commandName="Apply Patch..." description="Apply a patch to one or more workspace projects." category="_udz0FkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww4kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.compare.copyLeftToRight" commandName="Copy from Left to Right" description="Copy Current Change from Left to Right" category="_udz0GEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww40jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ltk.ui.refactoring.commands.moveResources" commandName="Move Resources" description="Move the selected resources and notify LTK participants." category="_udz0GkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww5EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewRenameBranch" commandName="Rename Branch..." category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww5UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.toggleInsertMode" commandName="Toggle Insert Mode" description="Toggle insert mode" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww5kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww50jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.generate.constructor.using.fields" commandName="Generate Constructor using Fields" description="Choose fields to initialize and constructor from superclass to call " category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww6EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.goto.line" commandName="Go to Line" description="Go to a specified line of text" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww6UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.nextSubTab" commandName="Next Sub-Tab" description="Switch to the next sub-tab" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww6kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.stash.create" commandName="Stash Changes" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww60jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewRemoveRemote" commandName="Delete Remote" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww7EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.goto.columnPrevious" commandName="Previous Column" description="Go to the previous column" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww7UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar" commandName="Run Last Launched External Tool" description="Runs the last launched external Tool" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww7kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.Commit" commandName="Commit..." category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww70jqEeSGvY5Z8GTn6g" elementId="org.eclipse.pde.ui.openPluginArtifact" commandName="Open Plug-in Artifact" description="Open a plug-in artifact in the manifest editor" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww8EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww8UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark" description="Add a bookmark" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww8kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.select.lineStart" commandName="Select Line Start" description="Select to the beginning of the line of text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww80jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.CheckoutCommand" commandName="Checkout" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww9EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.cut.line.to.end" commandName="Cut to End of Line" description="Cut to the end of a line of text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww9UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewAddRepository" commandName="Add a Git Repository" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww9kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.equinox.p2.ui.sdk.update" commandName="Check for Updates" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww90jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.findIncrementalReverse" commandName="Incremental Find Reverse" description="Incremental find reverse" category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww-EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.project.rebuildAll" commandName="Rebuild All" description="Rebuild all projects" category="_udzNPUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww-UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.window.activateEditor" commandName="Activate Editor" description="Activate the editor" category="_udzNOUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww-kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww-0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.compare.copyAllRightToLeft" commandName="Copy All from Right to Left" description="Copy All Changes from Right to Left" category="_udz0GEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww_EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.PushCommit" commandName="Push Commit..." category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww_UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.generate.javadoc" commandName="Generate Javadoc" description="Generates Javadoc for a selectable set of Java resources" category="_udzNPUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww_kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.working.set" commandName="Declaration in Working Set" description="Search for declarations of the selected element in a working set" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udww_0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.project.closeUnrelatedProjects" commandName="Close Unrelated Projects" description="Close unrelated projects" category="_udzNPUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwxAEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.goto.lineDown" commandName="Line Down" description="Go down one line of text" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwxAUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.ToggleBreakpoint" commandName="Toggle Breakpoint" description="Creates or removes a breakpoint" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwxAkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.compare.ignoreWhiteSpace" commandName="Ignore White Space" description="Ignore white space where applicable" category="_udz0GEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwxA0jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureGerritRemote" commandName="Gerrit Configuration..." category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwxBEjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.previousTab" commandName="Previous Tab" description="Switch to the previous tab" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwxBUjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition" commandName="Last Edit Location" description="Last edit location" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udwxBkjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.SkipRebase" commandName="Skip commit and continue" category="_udzNOkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udxX0EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.RebaseCurrent" commandName="Rebase" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udxX0UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.debug.ui.commands.toggleMemoryMonitorsPane" commandName="Toggle Memory Monitors Pane" description="Toggle visibility of the Memory Monitors Pane" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udxX0kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.team.cvs.ui.ignore" commandName="Add to .cvsignore" description="Ignore the Selected Resources when Synchronizing" category="_udzNOEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udxX00jqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id To Clipboard" description="Copies the build id to the clipboard." category="_udzNQEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udxX1EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_udzNO0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udxX1UjqEeSGvY5Z8GTn6g" elementId="title" name="Title"/>
<parameters xmi:id="_udxX1kjqEeSGvY5Z8GTn6g" elementId="message" name="Message"/>
<parameters xmi:id="_udxX10jqEeSGvY5Z8GTn6g" elementId="initialValue" name="Initial Value"/>
<parameters xmi:id="_udxX2EjqEeSGvY5Z8GTn6g" elementId="cancelReturns" name="Return Value on Cancel"/>
</commands>
<commands xmi:id="_udxX2UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.ShowVersions" commandName="Open" category="_udz0E0jqEeSGvY5Z8GTn6g">
<parameters xmi:id="_udxX2kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.history.CompareMode" name="Compare mode"/>
</commands>
<commands xmi:id="_udxX20jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.hierarchy" commandName="Declaration in Hierarchy" description="Search for declarations of the selected element in its hierarchy" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udxX3EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand" commandName="Properties" category="_udz0E0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udxX3UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ant.ui.antShortcut.debug" commandName="Debug Ant Build" description="Debug Ant Build" category="_udz0FEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udxX3kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.return.continue.targets" commandName="Search break/continue Target Occurrences in File" description="Search for break/continue target occurrences of a selected target name" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udxX30jqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.edit.text.java.search.implementors.in.workspace" commandName="Implementors in Workspace" description="Search for implementors of the selected interface" category="_udzNPkjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udxX4EjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.navigate.collapseAll" commandName="Collapse All" description="Collapse the current tree" category="_udz0GUjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udxX4UjqEeSGvY5Z8GTn6g" elementId="org.eclipse.jdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_udz0G0jqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udxX4kjqEeSGvY5Z8GTn6g" elementId="org.eclipse.ui.edit.text.folding.toggle" commandName="Toggle Folding" description="Toggles folding in the current editor" category="_udzNPEjqEeSGvY5Z8GTn6g"/>
<commands xmi:id="_udxX40jqEeSGvY5Z8GTn6g" elementId="org.eclipse.egit.ui.team.submodule.update" commandName="Update Submodule" category="_udzNOkjqEeSGvY5Z8GTn6g"/>