forked from giladHaimov/BTWiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
workbench.xmi
1987 lines (1987 loc) · 298 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:application="http://www.eclipse.org/ui/2010/UIModel/application" xmi:id="_2Zkl4dc0EeKw4vqlprE5Ug" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.ui.workbench" bindingContexts="_2Zkl69c0EeKw4vqlprE5Ug">
<tags>activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
<handlers xmi:id="_2Zkl49c0EeKw4vqlprE5Ug" elementId="_UW9TY_r3Ed6gmo7caOxU9g" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.ExitHandler" command="_2Zkl79c0EeKw4vqlprE5Ug"/>
<handlers xmi:id="_2Zkl5Nc0EeKw4vqlprE5Ug" elementId="_BESTZfr3Ed6gmo7caOxU04" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.swt/org.eclipse.e4.ui.internal.workbench.swt.handlers.ShowViewHandler" command="_2Zkl8Nc0EeKw4vqlprE5Ug"/>
<handlers xmi:id="_2Zkl5dc0EeKw4vqlprE5Ug" elementId="org.eclipse.e4.ui.saveHandler" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.handlers.SaveHandler" command="_2Zkl8tc0EeKw4vqlprE5Ug"/>
<handlers xmi:id="_2Zkl5tc0EeKw4vqlprE5Ug" elementId="org.eclipse.e4.ui.saveAllHandler" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.handlers.SaveAllHandler" command="_2Zkl89c0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2Zkl59c0EeKw4vqlprE5Ug" contributorURI="platform:/plugin/org.eclipse.ui.workbench" bindingContext="_2Zkl69c0EeKw4vqlprE5Ug">
<bindings xmi:id="_2Zkl6Nc0EeKw4vqlprE5Ug" elementId="_UW9TZfr3Ed6gmo7caOxU9g" contributorURI="platform:/plugin/org.eclipse.ui.workbench" keySequence="CTRL+Q" command="_2Zkl79c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2Zkl6dc0EeKw4vqlprE5Ug" elementId="_oRr6EAFSEd-Z8rQksLwRYw" contributorURI="platform:/plugin/org.eclipse.ui.workbench" keySequence="CTRL+S" command="_2Zkl8tc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2Zkl6tc0EeKw4vqlprE5Ug" contributorURI="platform:/plugin/org.eclipse.ui.workbench" keySequence="CTRL+SHIFT+S" command="_2Zkl89c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a9F9dc0EeKw4vqlprE5Ug" keySequence="CTRL+INSERT" command="_2aWpDNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a9tBNc0EeKw4vqlprE5Ug" keySequence="CTRL+A" command="_2aWCGtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a-7Jtc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+I" command="_2aUMzdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a_iMNc0EeKw4vqlprE5Ug" keySequence="CTRL+SPACE" command="_2aXQKtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAJQNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+SPACE" command="_2aa6j9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAwUdc0EeKw4vqlprE5Ug" keySequence="CTRL+Z" command="_2aVa7tc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bIsJNc0EeKw4vqlprE5Ug" keySequence="CTRL+Y" command="_2aZsc9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bIsJdc0EeKw4vqlprE5Ug" keySequence="CTRL+X" command="_2aYeU9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bIsJtc0EeKw4vqlprE5Ug" keySequence="CTRL+V" command="_2aUz79c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJTNNc0EeKw4vqlprE5Ug" keySequence="CTRL+F10" command="_2aWpKtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bKhUtc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+L" command="_2aUz3Nc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bKhU9c0EeKw4vqlprE5Ug" keySequence="CTRL+1" command="_2aX3Q9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLIYdc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+F3" command="_2acvqdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOyxdc0EeKw4vqlprE5Ug" keySequence="SHIFT+INSERT" command="_2aUz79c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bXVodc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+D" command="_2aZsbNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bXVo9c0EeKw4vqlprE5Ug" keySequence="SHIFT+DEL" command="_2aYeU9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bX8sdc0EeKw4vqlprE5Ug" keySequence="ALT+PAGE_UP" command="_2aXQItc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bX8stc0EeKw4vqlprE5Ug" keySequence="CTRL+C" command="_2aWpDNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bYjwtc0EeKw4vqlprE5Ug" keySequence="ALT+PAGE_DOWN" command="_2aZFR9c0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2a40gNc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.cEditorScope" bindingContext="_2agaBdc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2a730Nc0EeKw4vqlprE5Ug" keySequence="CTRL+TAB" command="_2acIoNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a9F8Nc0EeKw4vqlprE5Ug" keySequence="CTRL+I" command="_2aVbAdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a9F-tc0EeKw4vqlprE5Ug" keySequence="ALT+C" command="_2aUz09c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a-UFNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+F" command="_2abhiNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a-7INc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+I" command="_2adWt9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAJQ9c0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_UP" command="_2acIndc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bEatdc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+R" command="_2acvo9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bFo1dc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+L" command="_2aTlztc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bGP4dc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+T" command="_2aWpEdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bGP49c0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+M" command="_2aUz7tc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bGP5dc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+P" command="_2aXQLtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bGP59c0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+S" command="_2aXQM9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bG28dc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+N" command="_2aUMwNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bG289c0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+T" command="_2aZsW9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bHeANc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Z" command="_2aa6g9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bHeAtc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+/" command="_2aXQLdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bIFEtc0EeKw4vqlprE5Ug" keySequence="F3" command="_2aYeUdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLvcNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+S" command="_2aaTddc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLvd9c0EeKw4vqlprE5Ug" keySequence="CTRL+/" command="_2aa6d9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bMWgNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+O" command="_2aZFSNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bMWhNc0EeKw4vqlprE5Ug" keySequence="CTRL+O" command="_2aaThNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bMWiNc0EeKw4vqlprE5Ug" keySequence="CTRL+T" command="_2aTlvNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bM9lNc0EeKw4vqlprE5Ug" keySequence="F4" command="_2aZsU9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bNkpNc0EeKw4vqlprE5Ug" keySequence="CTRL+G" command="_2aZsdNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOLsdc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+ARROW_UP" command="_2aa6h9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOLtdc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_DOWN" command="_2abhgdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOLutc0EeKw4vqlprE5Ug" keySequence="SHIFT+TAB" command="_2acIkNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOyyNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_2aX3Ndc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bPZ1tc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+H" command="_2aWB-9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bQA5Nc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+\" command="_2aZsZ9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bQn8Nc0EeKw4vqlprE5Ug" keySequence="CTRL+=" command="_2aVa5tc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bVgc9c0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_2aYeQdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bVgdtc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_LEFT" command="_2aWpD9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bX8tNc0EeKw4vqlprE5Ug" keySequence="CTRL+#" command="_2aVa5tc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bYjwNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+G" command="_2aZFS9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bZK0Nc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+H" command="_2aaTh9c0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2a8e4Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.ui.javaEditorScope" bindingContext="_2agaB9c0EeKw4vqlprE5Ug">
<bindings xmi:id="_2a8e4dc0EeKw4vqlprE5Ug" keySequence="CTRL+I" command="_2aWpGNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a-UE9c0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+F" command="_2aZsa9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAJQtc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_UP" command="_2aYePdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bFBwNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+U" command="_2aa6c9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bGP5Nc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+P" command="_2aXQGtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bHeAdc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+/" command="_2aUM0Nc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLvcdc0EeKw4vqlprE5Ug" keySequence="CTRL+7" command="_2aUMztc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLvdNc0EeKw4vqlprE5Ug" keySequence="CTRL+/" command="_2aUMztc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLvedc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+M" command="_2aaTZdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLvfNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+O" command="_2aTls9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bMWg9c0EeKw4vqlprE5Ug" keySequence="CTRL+O" command="_2aWCBtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bMWh9c0EeKw4vqlprE5Ug" keySequence="CTRL+T" command="_2aWpHdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bMWidc0EeKw4vqlprE5Ug" keySequence="CTRL+F3" command="_2aX3Mtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOLsNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+ARROW_UP" command="_2aYeNtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOLtNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_DOWN" command="_2aWCFNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOLt9c0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+B" command="_2aZsb9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOyx9c0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_2acvsNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bPZ0dc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+C" command="_2aUMztc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bQA49c0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+\" command="_2acvtNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bUSUdc0EeKw4vqlprE5Ug" keySequence="CTRL+2 R" command="_2aVa-Nc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bUSUtc0EeKw4vqlprE5Ug" keySequence="CTRL+2 L" command="_2aWpJdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bUSU9c0EeKw4vqlprE5Ug" keySequence="CTRL+2 F" command="_2aaThdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bVgctc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_2acvrtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bVgddc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_LEFT" command="_2abhj9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_YD7EQLTqEeOtirkdr749Nw" keySequence="CTRL+SHIFT+SPACE" command="_YDat9LTqEeOtirkdr749Nw"/>
</bindingTables>
<bindingTables xmi:id="_2a9F8dc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" bindingContext="_2afy_dc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2a9F8tc0EeKw4vqlprE5Ug" keySequence="CTRL+I" command="_2aUMz9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a-UFdc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+F" command="_2aWpJ9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a-7I9c0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+>" command="_2aWpE9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAJRNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_UP" command="_2aTlutc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bGP5tc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+P" command="_2abhgtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bHeA9c0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+/" command="_2aYeO9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bIFFdc0EeKw4vqlprE5Ug" keySequence="F3" command="_2aX3KNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bMWhdc0EeKw4vqlprE5Ug" keySequence="CTRL+O" command="_2aZsaNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bNkqdc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+A" command="_2acIktc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOLstc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+ARROW_UP" command="_2abhjtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOLttc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_DOWN" command="_2aWCDNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOyydc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_2aaTd9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bPZ09c0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+C" command="_2aWB9Nc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bQA5dc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+\" command="_2aZFTdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bVgdNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_2aVbANc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bWHgNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_LEFT" command="_2acImtc0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2a9F89c0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.textEditorScope" bindingContext="_2afy-9c0EeKw4vqlprE5Ug">
<bindings xmi:id="_2a9F9Nc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+J" command="_2aZFVtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a9F9tc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_2aUM1Nc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a9tA9c0EeKw4vqlprE5Ug" keySequence="CTRL+ARROW_UP" command="_2aZsdtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a-7JNc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+ARROW_UP" command="_2aaTa9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a-7J9c0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+INSERT" command="_2aZFQ9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a_iMdc0EeKw4vqlprE5Ug" keySequence="ALT+ARROW_DOWN" command="_2aYeVNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a_iN9c0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+A" command="_2aX3Odc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAJR9c0EeKw4vqlprE5Ug" keySequence="CTRL+ARROW_DOWN" command="_2aZscNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAwVtc0EeKw4vqlprE5Ug" keySequence="F2" command="_2aUz0Nc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bBXYtc0EeKw4vqlprE5Ug" keySequence="END" command="_2acvsdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bBXY9c0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+Y" command="_2aYeP9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bBXZNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+X" command="_2abhg9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bBXZdc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+CR" command="_2aTlz9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bB-cNc0EeKw4vqlprE5Ug" keySequence="SHIFT+CR" command="_2aXQJNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bB-ctc0EeKw4vqlprE5Ug" keySequence="CTRL+NUMPAD_MULTIPLY" command="_2aXQK9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bB-c9c0EeKw4vqlprE5Ug" keySequence="CTRL+NUMPAD_DIVIDE" command="_2aZsZNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bB-dNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+Q" command="_2aYeWNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bB-ddc0EeKw4vqlprE5Ug" keySequence="CTRL+NUMPAD_ADD" command="_2aX3MNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bB-dtc0EeKw4vqlprE5Ug" keySequence="CTRL+NUMPAD_SUBTRACT" command="_2aaTc9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bClgNc0EeKw4vqlprE5Ug" keySequence="CTRL+K" command="_2acIltc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bClgdc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+K" command="_2acIq9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bClgtc0EeKw4vqlprE5Ug" keySequence="CTRL+J" command="_2aWpLNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bClg9c0EeKw4vqlprE5Ug" keySequence="CTRL+L" command="_2aZFRtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bClhNc0EeKw4vqlprE5Ug" keySequence="ALT+/" command="_2adWttc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bFBwdc0EeKw4vqlprE5Ug" keySequence="INSERT" command="_2aUz1Nc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bIFFtc0EeKw4vqlprE5Ug" keySequence="HOME" command="_2aX3M9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJTM9c0EeKw4vqlprE5Ug" keySequence="CTRL+F10" command="_2aX3Rdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJ6Rdc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_2aXQGdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bM9l9c0EeKw4vqlprE5Ug" keySequence="SHIFT+END" command="_2aTlzNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bNkoNc0EeKw4vqlprE5Ug" keySequence="CTRL+HOME" command="_2aaTe9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bNkptc0EeKw4vqlprE5Ug" keySequence="ALT+ARROW_UP" command="_2aaTgtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bNkqNc0EeKw4vqlprE5Ug" keySequence="CTRL+DEL" command="_2aVa69c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOywdc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+J" command="_2aZsddc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOywtc0EeKw4vqlprE5Ug" keySequence="CTRL+END" command="_2aUz1dc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOyw9c0EeKw4vqlprE5Ug" keySequence="CTRL+BS" command="_2aWB89c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bPZ0Nc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_2aYeTNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bWukdc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+DEL" command="_2aVbCNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bWuktc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+ARROW_DOWN" command="_2aaTiNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bXVotc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_2acvp9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bX8sNc0EeKw4vqlprE5Ug" keySequence="SHIFT+HOME" command="_2aZFUNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bX8s9c0EeKw4vqlprE5Ug" keySequence="CTRL+ARROW_LEFT" command="_2aVa-tc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bYjw9c0EeKw4vqlprE5Ug" keySequence="CTRL+ARROW_RIGHT" command="_2aa6ddc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bYjxNc0EeKw4vqlprE5Ug" keySequence="CTRL+D" command="_2aWpKdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_YD85cLTqEeOtirkdr749Nw" keySequence="F12" command="_YDdxQbTqEeOtirkdr749Nw"/>
</bindingTables>
<bindingTables xmi:id="_2a9F99c0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.contexts.window" bindingContext="_2Zkl7Nc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2a9F-Nc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_2aTlyNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a9F-dc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+D T" command="_2aX3Ktc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a9tANc0EeKw4vqlprE5Ug" keySequence="ALT+ARROW_LEFT" command="_2aYeM9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a9tBdc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+D Q" command="_2aZsX9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a9tBtc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+D J" command="_2abhhNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a-UENc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+D A" command="_2aaTcNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a-UFtc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+SHIFT+ARROW_RIGHT" command="_2aUM09c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a-7Jdc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+J" command="_2adWutc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a_iNNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+A R" command="_2acvttc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a_iNdc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+A D" command="_2adWvdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2a_iNtc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+A S" command="_2aXQOdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAJRdc0EeKw4vqlprE5Ug" keySequence="ALT+ARROW_RIGHT" command="_2aaTYNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAJSNc0EeKw4vqlprE5Ug" keySequence="CTRL+B" command="_2aTlx9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAwVNc0EeKw4vqlprE5Ug" keySequence="F5" command="_2aVbAtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAwVdc0EeKw4vqlprE5Ug" keySequence="CTRL+P" command="_2aZsedc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAwV9c0EeKw4vqlprE5Ug" keySequence="F2" command="_2aWCA9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAwWNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+S" command="_2aWpJNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bBXYNc0EeKw4vqlprE5Ug" keySequence="CTRL+S" command="_2aX3Otc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bBXYdc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+F4" command="_2acvotc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bB-cdc0EeKw4vqlprE5Ug" keySequence="CTRL+Q" command="_2aZFZdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bDMk9c0EeKw4vqlprE5Ug" keySequence="F11" command="_2aVa79c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bDMlNc0EeKw4vqlprE5Ug" keySequence="CTRL+F11" command="_2aaTatc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bDzotc0EeKw4vqlprE5Ug" keySequence="CTRL+-" command="_2aYeSdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bDzo9c0EeKw4vqlprE5Ug" keySequence="CTRL+F12" command="_2aXQNNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bDzpNc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+SHIFT+F12" command="_2aa6fdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bDzpdc0EeKw4vqlprE5Ug" keySequence="CTRL+F9" command="_2aUz5dc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bDzptc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+F9" command="_2aUz5Nc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bEatNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+R" command="_2aYeS9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bFBxdc0EeKw4vqlprE5Ug" keySequence="CTRL+N" command="_2aWpBtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bFBx9c0EeKw4vqlprE5Ug" keySequence="CTRL+W" command="_2aWpAtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bFo0Nc0EeKw4vqlprE5Ug" keySequence="CTRL+F4" command="_2aWpAtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bFo0dc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+W" command="_2acvotc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bFo1Nc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+L" command="_2abhi9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bGP4Nc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+T" command="_2aaTbtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bGP4tc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+M" command="_2abhl9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bG28Nc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+N" command="_2aTltNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bG28tc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+T" command="_2aX3Jdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bG29dc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Z" command="_2aUMxtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bHeBNc0EeKw4vqlprE5Ug" keySequence="F9" command="_2aXQENc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bHeBdc0EeKw4vqlprE5Ug" keySequence="SHIFT+F9" command="_2aa6fNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bHeBtc0EeKw4vqlprE5Ug" keySequence="F3" command="_2aZFRNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bIsItc0EeKw4vqlprE5Ug" keySequence="SHIFT+F5" command="_2aVa9Nc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bIsJ9c0EeKw4vqlprE5Ug" keySequence="DEL" command="_2aUz29c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJTMNc0EeKw4vqlprE5Ug" keySequence="CTRL+." command="_2aWCBdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJTMdc0EeKw4vqlprE5Ug" keySequence="CTRL+," command="_2aVa4Nc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJTMtc0EeKw4vqlprE5Ug" keySequence="ALT+-" command="_2aYePNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJTNdc0EeKw4vqlprE5Ug" keySequence="F12" command="_2aZFWdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJTNtc0EeKw4vqlprE5Ug" keySequence="CTRL+M" command="_2aXQFNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJTN9c0EeKw4vqlprE5Ug" keySequence="CTRL+F6" command="_2aVbC9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJ6QNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+F6" command="_2aXQEdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJ6Qdc0EeKw4vqlprE5Ug" keySequence="CTRL+F7" command="_2aaTedc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJ6Qtc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+F7" command="_2aXQPNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJ6Q9c0EeKw4vqlprE5Ug" keySequence="CTRL+F8" command="_2adWtNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJ6RNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+F8" command="_2aX3Kdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bJ6Rtc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_2aZsY9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bKhUNc0EeKw4vqlprE5Ug" keySequence="ALT+F7" command="_2aYeMdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bKhUdc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+F7" command="_2aWpGtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bKhVNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+R" command="_2aWpG9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bKhVdc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+W" command="_2aWB_dc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bKhVtc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+N" command="_2aVa6dc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLIYNc0EeKw4vqlprE5Ug" keySequence="CTRL+3" command="_2acvq9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLIY9c0EeKw4vqlprE5Ug" keySequence="CTRL+U" command="_2adWv9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLIZNc0EeKw4vqlprE5Ug" keySequence="ALT+CR" command="_2aaTfdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLIaNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+S" command="_2aVa4dc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLvetc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+O" command="_2aZFWtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bMWgdc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+V" command="_2aVbCdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bM9kdc0EeKw4vqlprE5Ug" keySequence="SHIFT+F2" command="_2aa6itc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bM9k9c0EeKw4vqlprE5Ug" keySequence="F4" command="_2aX3Ptc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bM9ltc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+U" command="_2aUM1tc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bNkotc0EeKw4vqlprE5Ug" keySequence="CTRL+G" command="_2aWCDtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOywNc0EeKw4vqlprE5Ug" keySequence="CTRL+H" command="_2aaTftc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bPZ1Nc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+SHIFT+ARROW_UP" command="_2aYeUNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bPZ1dc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+H" command="_2aTlw9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bQA4tc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+I" command="_2aWpCNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bQA5tc0EeKw4vqlprE5Ug" keySequence="CTRL+E" command="_2aUz5tc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bQA59c0EeKw4vqlprE5Ug" keySequence="CTRL+=" command="_2aX3Qdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bQn8dc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q K" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bQn8tc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.mylyn.tasks.ui.views.tasks"/>
</bindings>
<bindings xmi:id="_2bRPANc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q V" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bRPAdc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/>
</bindings>
<bindings xmi:id="_2bRPAtc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q B" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bRPA9c0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/>
</bindings>
<bindings xmi:id="_2bRPBNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q S" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bRPBdc0EeKw4vqlprE5Ug" 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="_2bR2ENc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q Y" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bR2Edc0EeKw4vqlprE5Ug" 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="_2bR2Etc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q Z" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bR2E9c0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/>
</bindings>
<bindings xmi:id="_2bR2FNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q H" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bR2Fdc0EeKw4vqlprE5Ug" 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="_2bSdINc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q C" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bSdIdc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/>
</bindings>
<bindings xmi:id="_2bTEMNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q Q" command="_2acIrdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bTEMdc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q X" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bTEMtc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/>
</bindings>
<bindings xmi:id="_2bTrQNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q O" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bTrQdc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/>
</bindings>
<bindings xmi:id="_2bTrQtc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+X Q" command="_2aYeOtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bTrQ9c0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+X J" command="_2aaTcdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bTrRNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+X A" command="_2acvutc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bUSUNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+X T" command="_2aaTfNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bUSVNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q T" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bUSVdc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.TypeHierarchy"/>
</bindings>
<bindings xmi:id="_2bU5YNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q P" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bU5Ydc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.PackageExplorer"/>
</bindings>
<bindings xmi:id="_2bU5Ytc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q D" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bU5Y9c0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.SourceView"/>
</bindings>
<bindings xmi:id="_2bVgcNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+Q J" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_2bVgcdc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.JavadocView"/>
</bindings>
<bindings xmi:id="_2bWHg9c0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+C" command="_2aaThtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bWHhNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+B" command="_2aZFYNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bWukNc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+G" command="_2aUz3tc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bWuk9c0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+F" command="_2acvstc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bXVoNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+E" command="_2aXQO9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bXVpNc0EeKw4vqlprE5Ug" keySequence="CTRL+F" command="_2aYeVdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bX8tdc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+G" command="_2aUz7Nc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bYjxdc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+H" command="_2aVa49c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bZK0tc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+SHIFT+ARROW_DOWN" command="_2abhlNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_umBF0Nc7EeKw4vqlprE5Ug" keySequence="CTRL+TAB" command="_2aXQLNc0EeKw4vqlprE5Ug">
<tags>type:user</tags>
</bindings>
<bindings xmi:id="_YD8SYLTqEeOtirkdr749Nw" keySequence="CTRL++" command="_2aX3Qdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_YD9ggrTqEeOtirkdr749Nw" keySequence="CTRL+SHIFT+F12" command="_YDeYUrTqEeOtirkdr749Nw"/>
<bindings xmi:id="_YD9gg7TqEeOtirkdr749Nw" keySequence="ALT+SHIFT+P" command="_YDb8HbTqEeOtirkdr749Nw"/>
<bindings xmi:id="_YD_VsLTqEeOtirkdr749Nw" keySequence="ALT+SHIFT+X M" command="_YDeYU7TqEeOtirkdr749Nw"/>
<bindings xmi:id="_YD_8wLTqEeOtirkdr749Nw" keySequence="ALT+SHIFT+Q E" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_YD_8wbTqEeOtirkdr749Nw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.recommenders.extdoc.rcp.ExtdocView"/>
</bindings>
<bindings xmi:id="_YEAj0LTqEeOtirkdr749Nw" keySequence="ALT+SHIFT+Q L" command="_2acIrdc0EeKw4vqlprE5Ug">
<parameters xmi:id="_YEAj0bTqEeOtirkdr749Nw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/>
</bindings>
<bindings xmi:id="_YEBK4rTqEeOtirkdr749Nw" keySequence="CTRL+#" command="_YDcjLLTqEeOtirkdr749Nw"/>
</bindingTables>
<bindingTables xmi:id="_2a9tAdc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.macroExpansionHoverScope" bindingContext="_2agaEtc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2a9tAtc0EeKw4vqlprE5Ug" keySequence="ALT+ARROW_LEFT" command="_2aUMxNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAJRtc0EeKw4vqlprE5Ug" keySequence="ALT+ARROW_RIGHT" command="_2aZFVNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bIFFNc0EeKw4vqlprE5Ug" keySequence="F3" command="_2aYeUdc0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2a-UEdc0EeKw4vqlprE5Ug" elementId="org.eclipse.ant.ui.AntEditorScope" bindingContext="_2afy_Nc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2a-UEtc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+F" command="_2aZsa9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bEas9c0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+R" command="_2aUMxdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLve9c0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+O" command="_2acIrNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bM9kNc0EeKw4vqlprE5Ug" keySequence="SHIFT+F2" command="_2aWpEtc0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2a-7Idc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.cViewScope" bindingContext="_2afy9Nc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2a-7Itc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+I" command="_2adWt9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bEattc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+R" command="_2acvo9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bG29Nc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+T" command="_2aZsW9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bIFE9c0EeKw4vqlprE5Ug" keySequence="F3" command="_2aYeUdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bM9ldc0EeKw4vqlprE5Ug" keySequence="F4" command="_2aZsU9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bNkpdc0EeKw4vqlprE5Ug" keySequence="CTRL+G" command="_2aZsdNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bPZ19c0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+H" command="_2aWB-9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bYjwdc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+G" command="_2aZFS9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bZK0dc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+H" command="_2aaTh9c0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2a_iMtc0EeKw4vqlprE5Ug" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" bindingContext="_2afy89c0EeKw4vqlprE5Ug">
<bindings xmi:id="_2a_iM9c0EeKw4vqlprE5Ug" keySequence="ALT+ARROW_DOWN" command="_2aZFY9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bAJQdc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_UP" command="_2aUMydc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bEasNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+R" command="_2aVa8tc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bEat9c0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+U" command="_2aX3Ltc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bFBwtc0EeKw4vqlprE5Ug" keySequence="INSERT" command="_2aXQMtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bFBw9c0EeKw4vqlprE5Ug" keySequence="CTRL+CR" command="_2aZsUdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bM9ktc0EeKw4vqlprE5Ug" keySequence="F4" command="_2aZsUtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bNkp9c0EeKw4vqlprE5Ug" keySequence="ALT+ARROW_UP" command="_2aWpBdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOLs9c0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+ARROW_DOWN" command="_2acvr9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOyxNc0EeKw4vqlprE5Ug" keySequence="SHIFT+INSERT" command="_2aYeV9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bQA4Nc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+I" command="_2aXQMNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bWHgdc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+C" command="_2aaTctc0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2bAJSdc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.console" bindingContext="_2agaCNc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2bAwUNc0EeKw4vqlprE5Ug" keySequence="CTRL+Z" command="_2aXQG9c0EeKw4vqlprE5Ug">
<tags>platform:win32</tags>
</bindings>
</bindingTables>
<bindingTables xmi:id="_2bAwUtc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.debugging" bindingContext="_2afy9dc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2bAwU9c0EeKw4vqlprE5Ug" keySequence="F5" command="_2aZsctc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bClhdc0EeKw4vqlprE5Ug" keySequence="F6" command="_2aUMw9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bDMkNc0EeKw4vqlprE5Ug" keySequence="F7" command="_2acvrNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bDMkdc0EeKw4vqlprE5Ug" keySequence="F8" command="_2adWvtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bDMktc0EeKw4vqlprE5Ug" keySequence="CTRL+F2" command="_2aXQMdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bDMldc0EeKw4vqlprE5Ug" keySequence="CTRL+R" command="_2aWpENc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLIYtc0EeKw4vqlprE5Ug" keySequence="CTRL+F5" command="_2aYeVtc0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2bDMltc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_2agaDNc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2bDMl9c0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+M" command="_2aUMx9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bDMmNc0EeKw4vqlprE5Ug" keySequence="ALT+CTRL+N" command="_2aUz0tc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bFBxNc0EeKw4vqlprE5Ug" keySequence="CTRL+N" command="_2aYeQ9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bFBxtc0EeKw4vqlprE5Ug" keySequence="CTRL+W" command="_2aX3INc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bMWhtc0EeKw4vqlprE5Ug" keySequence="CTRL+T" command="_2aZsUNc0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2bDMmdc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_2afy99c0EeKw4vqlprE5Ug">
<bindings xmi:id="_2bDzoNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+." command="_2aS-wtc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bDzodc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+," command="_2acIqdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bNkodc0EeKw4vqlprE5Ug" keySequence="CTRL+G" command="_2aXQNdc0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2bEasdc0EeKw4vqlprE5Ug" elementId="org.eclipse.mylyn.tasks.ui.editors.task" bindingContext="_2agaBtc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2bEastc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+R" command="_2aVa8tc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bEauNc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+U" command="_2aX3Ltc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLIZ9c0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+S" command="_2acvvNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLveNc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+M" command="_2aWCBNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bMWgtc0EeKw4vqlprE5Ug" keySequence="CTRL+O" command="_2acIpdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bQA4dc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+I" command="_2aXQMNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bWHgtc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+C" command="_2aaTctc0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2bFo0tc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.debug.ui.debugging" bindingContext="_2afy-tc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2bFo09c0EeKw4vqlprE5Ug" keySequence="SHIFT+F8" command="_2aZFXdc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bIsINc0EeKw4vqlprE5Ug" keySequence="SHIFT+F7" command="_2aWB8Nc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bIsIdc0EeKw4vqlprE5Ug" keySequence="SHIFT+F6" command="_2aWpINc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bIsI9c0EeKw4vqlprE5Ug" keySequence="SHIFT+F5" command="_2aVa5Nc0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2bIFENc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.make.ui.makefileEditorScope" bindingContext="_2agaBNc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2bIFEdc0EeKw4vqlprE5Ug" keySequence="F3" command="_2adWuNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLvdtc0EeKw4vqlprE5Ug" keySequence="CTRL+/" command="_2acIm9c0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bOyxtc0EeKw4vqlprE5Ug" keySequence="CTRL+\" command="_2aXQN9c0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2bIFF9c0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.context" bindingContext="_2afy9tc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2bIFGNc0EeKw4vqlprE5Ug" keySequence="HOME" command="_2aVbBNc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bNko9c0EeKw4vqlprE5Ug" keySequence="CTRL+G" command="_2aTltdc0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2bLIZdc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_2afy-dc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2bLIZtc0EeKw4vqlprE5Ug" keySequence="ALT+CR" command="_2aaTYdc0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2bLvctc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.ui.propertiesEditorScope" bindingContext="_2agaDtc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2bLvc9c0EeKw4vqlprE5Ug" keySequence="CTRL+7" command="_2aUMztc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bLvddc0EeKw4vqlprE5Ug" keySequence="CTRL+/" command="_2aUMztc0EeKw4vqlprE5Ug"/>
<bindings xmi:id="_2bPZ0tc0EeKw4vqlprE5Ug" keySequence="CTRL+SHIFT+C" command="_2aUMztc0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2bOLuNc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" bindingContext="_2agaENc0EeKw4vqlprE5Ug">
<bindings xmi:id="_2bOLudc0EeKw4vqlprE5Ug" keySequence="ALT+SHIFT+B" command="_2aZsb9c0EeKw4vqlprE5Ug"/>
</bindingTables>
<bindingTables xmi:id="_2eydEdc0EeKw4vqlprE5Ug" bindingContext="_2eydENc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2ezEIdc0EeKw4vqlprE5Ug" bindingContext="_2ezEINc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2ezEI9c0EeKw4vqlprE5Ug" bindingContext="_2ezEItc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2ezEJdc0EeKw4vqlprE5Ug" bindingContext="_2ezEJNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2ezrMdc0EeKw4vqlprE5Ug" bindingContext="_2ezrMNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2ezrM9c0EeKw4vqlprE5Ug" bindingContext="_2ezrMtc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2ezrNdc0EeKw4vqlprE5Ug" bindingContext="_2ezrNNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2e05Udc0EeKw4vqlprE5Ug" bindingContext="_2e05UNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2e1gYtc0EeKw4vqlprE5Ug" bindingContext="_2e1gYdc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2e2Hcdc0EeKw4vqlprE5Ug" bindingContext="_2e2HcNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2e2Hc9c0EeKw4vqlprE5Ug" bindingContext="_2e2Hctc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2e2Hddc0EeKw4vqlprE5Ug" bindingContext="_2e2HdNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2e2ugNc0EeKw4vqlprE5Ug" bindingContext="_2e2Hdtc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2e2ugtc0EeKw4vqlprE5Ug" bindingContext="_2e2ugdc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2e2uhNc0EeKw4vqlprE5Ug" bindingContext="_2e2ug9c0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2e2uhtc0EeKw4vqlprE5Ug" bindingContext="_2e2uhdc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2e3Vkdc0EeKw4vqlprE5Ug" bindingContext="_2e3VkNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2e3Vk9c0EeKw4vqlprE5Ug" bindingContext="_2e3Vktc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tiDsdc0EeKw4vqlprE5Ug" bindingContext="_2tiDsNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tiqwdc0EeKw4vqlprE5Ug" bindingContext="_2tiqwNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tiqw9c0EeKw4vqlprE5Ug" bindingContext="_2tiqwtc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tiqxdc0EeKw4vqlprE5Ug" bindingContext="_2tiqxNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tjR0dc0EeKw4vqlprE5Ug" bindingContext="_2tjR0Nc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tjR09c0EeKw4vqlprE5Ug" bindingContext="_2tjR0tc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tjR1dc0EeKw4vqlprE5Ug" bindingContext="_2tjR1Nc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tj44dc0EeKw4vqlprE5Ug" bindingContext="_2tj44Nc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tj449c0EeKw4vqlprE5Ug" bindingContext="_2tj44tc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tj45dc0EeKw4vqlprE5Ug" bindingContext="_2tj45Nc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tkf8dc0EeKw4vqlprE5Ug" bindingContext="_2tkf8Nc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tkf89c0EeKw4vqlprE5Ug" bindingContext="_2tkf8tc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tkf9dc0EeKw4vqlprE5Ug" bindingContext="_2tkf9Nc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tlHAdc0EeKw4vqlprE5Ug" bindingContext="_2tlHANc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tlHA9c0EeKw4vqlprE5Ug" bindingContext="_2tlHAtc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tlHBdc0EeKw4vqlprE5Ug" bindingContext="_2tlHBNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tluEdc0EeKw4vqlprE5Ug" bindingContext="_2tluENc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tluE9c0EeKw4vqlprE5Ug" bindingContext="_2tluEtc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tmVIdc0EeKw4vqlprE5Ug" bindingContext="_2tmVINc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tmVI9c0EeKw4vqlprE5Ug" bindingContext="_2tmVItc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tmVJdc0EeKw4vqlprE5Ug" bindingContext="_2tmVJNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tm8Mdc0EeKw4vqlprE5Ug" bindingContext="_2tm8MNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tm8M9c0EeKw4vqlprE5Ug" bindingContext="_2tm8Mtc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tnjQNc0EeKw4vqlprE5Ug" bindingContext="_2tm8NNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tnjQtc0EeKw4vqlprE5Ug" bindingContext="_2tnjQdc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tnjRNc0EeKw4vqlprE5Ug" bindingContext="_2tnjQ9c0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2toKUdc0EeKw4vqlprE5Ug" bindingContext="_2toKUNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2toKU9c0EeKw4vqlprE5Ug" bindingContext="_2toKUtc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2toxYdc0EeKw4vqlprE5Ug" bindingContext="_2toxYNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tpYcdc0EeKw4vqlprE5Ug" bindingContext="_2tpYcNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tp_gdc0EeKw4vqlprE5Ug" bindingContext="_2tp_gNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tqmkdc0EeKw4vqlprE5Ug" bindingContext="_2tqmkNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tqmk9c0EeKw4vqlprE5Ug" bindingContext="_2tqmktc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tqmldc0EeKw4vqlprE5Ug" bindingContext="_2tqmlNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2trNodc0EeKw4vqlprE5Ug" bindingContext="_2trNoNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2trNo9c0EeKw4vqlprE5Ug" bindingContext="_2trNotc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tr0sNc0EeKw4vqlprE5Ug" bindingContext="_2trNpNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tr0stc0EeKw4vqlprE5Ug" bindingContext="_2tr0sdc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tr0tNc0EeKw4vqlprE5Ug" bindingContext="_2tr0s9c0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tsbwdc0EeKw4vqlprE5Ug" bindingContext="_2tsbwNc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2ttC0dc0EeKw4vqlprE5Ug" bindingContext="_2ttC0Nc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2ttC09c0EeKw4vqlprE5Ug" bindingContext="_2ttC0tc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2ttp4dc0EeKw4vqlprE5Ug" bindingContext="_2ttp4Nc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2ttp49c0EeKw4vqlprE5Ug" bindingContext="_2ttp4tc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2ttp5dc0EeKw4vqlprE5Ug" bindingContext="_2ttp5Nc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tuQ8dc0EeKw4vqlprE5Ug" bindingContext="_2tuQ8Nc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tuQ89c0EeKw4vqlprE5Ug" bindingContext="_2tuQ8tc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tuQ9dc0EeKw4vqlprE5Ug" bindingContext="_2tuQ9Nc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_2tu4Adc0EeKw4vqlprE5Ug" bindingContext="_2tu4ANc0EeKw4vqlprE5Ug"/>
<bindingTables xmi:id="_Ytt20dd9EeKGWLE-r9YanA" bindingContext="_Ytt20Nd9EeKGWLE-r9YanA"/>
<bindingTables xmi:id="_HoCxEQ28EeOhNvzi9gocLA" bindingContext="_HoCxEA28EeOhNvzi9gocLA"/>
<bindingTables xmi:id="_YD5PELTqEeOtirkdr749Nw" elementId="org.eclipse.wb.core.java.editorScope" bindingContext="_YDg0kLTqEeOtirkdr749Nw">
<bindings xmi:id="_YD6dMLTqEeOtirkdr749Nw" keySequence="ALT+CTRL+A" command="_YDb8G7TqEeOtirkdr749Nw"/>
<bindings xmi:id="_YD-uoLTqEeOtirkdr749Nw" keySequence="CTRL+SHIFT+A" command="_YDb8G7TqEeOtirkdr749Nw"/>
</bindingTables>
<bindingTables xmi:id="_YD7EQbTqEeOtirkdr749Nw" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_YDg0kbTqEeOtirkdr749Nw">
<bindings xmi:id="_YD7EQrTqEeOtirkdr749Nw" keySequence="CTRL+V" command="_YDZf4LTqEeOtirkdr749Nw"/>
<bindings xmi:id="_YEAj07TqEeOtirkdr749Nw" keySequence="CTRL+C" command="_YDaG4LTqEeOtirkdr749Nw"/>
</bindingTables>
<bindingTables xmi:id="_YD7rULTqEeOtirkdr749Nw" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" bindingContext="_YDhboLTqEeOtirkdr749Nw">
<bindings xmi:id="_YD7rUbTqEeOtirkdr749Nw" keySequence="F1" command="_YDat_LTqEeOtirkdr749Nw"/>
</bindingTables>
<bindingTables xmi:id="_YD7rUrTqEeOtirkdr749Nw" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" bindingContext="_YDhbobTqEeOtirkdr749Nw">
<bindings xmi:id="_YD7rU7TqEeOtirkdr749Nw" keySequence="CTRL+SHIFT+O" command="_YDeYVLTqEeOtirkdr749Nw"/>
</bindingTables>
<bindingTables xmi:id="_YD9ggLTqEeOtirkdr749Nw" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" bindingContext="_YDhborTqEeOtirkdr749Nw">
<bindings xmi:id="_YD9ggbTqEeOtirkdr749Nw" keySequence="CTRL+O" command="_YDeYVLTqEeOtirkdr749Nw"/>
</bindingTables>
<bindingTables xmi:id="_YD9ghLTqEeOtirkdr749Nw" elementId="org.eclipse.core.runtime.xml" bindingContext="_2agaA9c0EeKw4vqlprE5Ug">
<bindings xmi:id="_YD9ghbTqEeOtirkdr749Nw" keySequence="CTRL+SHIFT+P" command="_YDeYYLTqEeOtirkdr749Nw"/>
<bindings xmi:id="_YEAj0rTqEeOtirkdr749Nw" keySequence="CTRL+SHIFT+D" command="_YDdxULTqEeOtirkdr749Nw"/>
</bindingTables>
<bindingTables xmi:id="_YEBK4LTqEeOtirkdr749Nw" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_YDg0krTqEeOtirkdr749Nw">
<bindings xmi:id="_YEBK4bTqEeOtirkdr749Nw" keySequence="CTRL+C" command="_YDbVALTqEeOtirkdr749Nw"/>
</bindingTables>
<bindingTables xmi:id="_YF8dgbTqEeOtirkdr749Nw" bindingContext="_YF8dgLTqEeOtirkdr749Nw"/>
<bindingTables xmi:id="_YF9EkbTqEeOtirkdr749Nw" bindingContext="_YF9EkLTqEeOtirkdr749Nw"/>
<bindingTables xmi:id="_YF9robTqEeOtirkdr749Nw" bindingContext="_YF9roLTqEeOtirkdr749Nw"/>
<bindingTables xmi:id="_YMM2gbTqEeOtirkdr749Nw" bindingContext="_YMM2gLTqEeOtirkdr749Nw"/>
<bindingTables xmi:id="_YMNdkbTqEeOtirkdr749Nw" bindingContext="_YMNdkLTqEeOtirkdr749Nw"/>
<bindingTables xmi:id="_YMNdk7TqEeOtirkdr749Nw" bindingContext="_YMNdkrTqEeOtirkdr749Nw"/>
<bindingTables xmi:id="_YMNdlbTqEeOtirkdr749Nw" bindingContext="_YMNdlLTqEeOtirkdr749Nw"/>
<bindingTables xmi:id="_YMOEobTqEeOtirkdr749Nw" bindingContext="_YMOEoLTqEeOtirkdr749Nw"/>
<bindingTables xmi:id="_YMOEo7TqEeOtirkdr749Nw" bindingContext="_YMOEorTqEeOtirkdr749Nw"/>
<bindingTables xmi:id="_YMOrsbTqEeOtirkdr749Nw" bindingContext="_YMOrsLTqEeOtirkdr749Nw"/>
<bindingTables xmi:id="_CO_tobUREeOzJuouN5K4ZA" bindingContext="_CO_toLUREeOzJuouN5K4ZA"/>
<rootContext xmi:id="_2Zkl69c0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.contexts.dialogAndWindow" contributorURI="platform:/plugin/org.eclipse.ui.workbench" name="In Dialogs and Windows" description="Either a dialog or a window is open">
<children xmi:id="_2Zkl7Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.ui.workbench" name="In Windows" description="A window is open">
<children xmi:id="_2Zkl7dc0EeKw4vqlprE5Ug" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.ui.workbench" name="%bindingcontext.name.bindingView"/>
<children xmi:id="_2afy8dc0EeKw4vqlprE5Ug" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/>
<children xmi:id="_2afy89c0EeKw4vqlprE5Ug" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" name="In Tasks View"/>
<children xmi:id="_2afy9Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.cViewScope" name="In C/C++ Views" description="In C/C++ Views"/>
<children xmi:id="_2afy9dc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging Programs">
<children xmi:id="_2afy9tc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.context" name="In Disassembly" description="When debugging in assembly mode"/>
<children xmi:id="_2afy99c0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/>
<children xmi:id="_2afy-tc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.debug.ui.debugging" name="Debugging C/C++" description="Debugging C/C++ Programs"/>
<children xmi:id="_2agaCtc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.debug.ui.debugging" name="Debugging Java" description="Debugging Java programs"/>
</children>
<children xmi:id="_2afy-dc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/>
<children xmi:id="_2afy-9c0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context">
<children xmi:id="_2afy_Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.ant.ui.AntEditorScope" name="Editing Ant Buildfiles" description="Editing Ant Buildfiles Context"/>
<children xmi:id="_2afy_dc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors">
<children xmi:id="_2afy_tc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.xml.occurrences" name="XML Source Occurrences" description="XML Source Occurrences"/>
<children xmi:id="_2afy_9c0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.xml.navigation" name="XML Source Navigation" description="XML Source Navigation"/>
<children xmi:id="_2afzANc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.xml.cleanup" name="XML Source Cleanup" description="XML Source Cleanup"/>
<children xmi:id="_2agaANc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.xml.grammar" name="XML Source Grammar" description="XML Source Grammar"/>
<children xmi:id="_2agaAdc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.sse.comments" name="Source Comments in Structured Text Editors" description="Source Comments in Structured Text Editors"/>
<children xmi:id="_2agaAtc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.xml.selection" name="XML Source Selection" description="XML Source Selection"/>
<children xmi:id="_2agaA9c0EeKw4vqlprE5Ug" elementId="org.eclipse.core.runtime.xml" name="Editing XML Source" description="Editing XML Source"/>
<children xmi:id="_2agaDdc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.xml.comments" name="XML Source Comments" description="XML Source Comments"/>
<children xmi:id="_2agaEdc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.xml.dependencies" name="XML Source Dependencies" description="XML Source Dependencies"/>
<children xmi:id="_2agaE9c0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.xml.expand" name="XML Source Expand/Collapse" description="XML Source Expand/Collapse"/>
</children>
<children xmi:id="_2agaBNc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.make.ui.makefileEditorScope" name="Makefile Editor" description="Editor for makefiles"/>
<children xmi:id="_2agaBdc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.cEditorScope" name="C/C++ Editor" description="Editor for C/C++ Source Files"/>
<children xmi:id="_2agaBtc0EeKw4vqlprE5Ug" elementId="org.eclipse.mylyn.tasks.ui.editors.task" name="In Tasks Editor"/>
<children xmi:id="_2agaB9c0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.ui.javaEditorScope" name="Editing Java Source" description="Editing Java Source Context"/>
<children xmi:id="_2agaC9c0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.xsd.ui.text.editor.context" name="Editing XSD context"/>
<children xmi:id="_2agaDtc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.ui.propertiesEditorScope" name="Editing Properties Files" description="Editing Properties Files Context"/>
<children xmi:id="_YDg0kLTqEeOtirkdr749Nw" elementId="org.eclipse.wb.core.java.editorScope" name="WindowBuilder Java scope"/>
<children xmi:id="_YDhboLTqEeOtirkdr749Nw" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context">
<children xmi:id="_YDhbobTqEeOtirkdr749Nw" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" name="Task Markup Editor Source Context"/>
<children xmi:id="_YDhborTqEeOtirkdr749Nw" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context"/>
</children>
</children>
<children xmi:id="_2agaCNc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O Console"/>
<children xmi:id="_2agaDNc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In Memory View"/>
<children xmi:id="_2agaD9c0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/>
<children xmi:id="_YDg0kbTqEeOtirkdr749Nw" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View"/>
<children xmi:id="_YDg0krTqEeOtirkdr749Nw" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/>
</children>
<children xmi:id="_2Zkl7tc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.ui.workbench" name="In Dialogs" description="A dialog is open"/>
<children xmi:id="_2agaEtc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.macroExpansionHoverScope" name="In Macro Expansion Hover" description="In Macro Expansion Hover"/>
</rootContext>
<rootContext xmi:id="_2afy8Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.xsd.ui.editor.designView" name="XSD Editor Design View" description="XSD Editor Design View"/>
<rootContext xmi:id="_2afy8tc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/>
<rootContext xmi:id="_2afy-Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.xsd.ui.editor.sourceView" name="XSD Editor Source View" description="XSD Editor Source View"/>
<rootContext xmi:id="_2agaCdc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/>
<rootContext xmi:id="_2agaENc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" name="Editor Breadcrumb Navigation" description="Editor Breadcrumb Navigation Context"/>
<rootContext xmi:id="_2eydENc0EeKw4vqlprE5Ug" elementId="org.eclipse.ant.ui.OpenExternalDocAction" name="Auto::org.eclipse.ant.ui.OpenExternalDocAction"/>
<rootContext xmi:id="_2ezEINc0EeKw4vqlprE5Ug" elementId="org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" name="Auto::org.eclipse.ant.ui.actions.ManageBreakpointRulerAction"/>
<rootContext xmi:id="_2ezEItc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.debug.ui.CEditor.RulerTobbleBreakpointAction" name="Auto::org.eclipse.cdt.debug.ui.CEditor.RulerTobbleBreakpointAction"/>
<rootContext xmi:id="_2ezEJNc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.texteditor.BookmarkRulerAction" name="Auto::org.eclipse.ui.texteditor.BookmarkRulerAction"/>
<rootContext xmi:id="_2ezrMNc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.internal.ui.text.correction.CSelectRulerAction" name="Auto::org.eclipse.cdt.internal.ui.text.correction.CSelectRulerAction"/>
<rootContext xmi:id="_2ezrMtc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" name="Auto::org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction"/>
<rootContext xmi:id="_2ezrNNc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.debug.ui.SnippetExecute" name="Auto::org.eclipse.jdt.debug.ui.SnippetExecute"/>
<rootContext xmi:id="_2e05UNc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.debug.ui.SnippetDisplay" name="Auto::org.eclipse.jdt.debug.ui.SnippetDisplay"/>
<rootContext xmi:id="_2e1gYdc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.debug.ui.SnippetInspect" name="Auto::org.eclipse.jdt.debug.ui.SnippetInspect"/>
<rootContext xmi:id="_2e2HcNc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" name="Auto::org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction"/>
<rootContext xmi:id="_2e2Hctc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" name="Auto::org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction"/>
<rootContext xmi:id="_2e2HdNc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" name="Auto::org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction"/>
<rootContext xmi:id="_2e2Hdtc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" name="Auto::org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction"/>
<rootContext xmi:id="_2e2ugdc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.texteditor.SelectRulerAction" name="Auto::org.eclipse.ui.texteditor.SelectRulerAction"/>
<rootContext xmi:id="_2e2ug9c0EeKw4vqlprE5Ug" elementId="StructureSelectEnclosing" name="Auto::StructureSelectEnclosing"/>
<rootContext xmi:id="_2e2uhdc0EeKw4vqlprE5Ug" elementId="StructureSelectNext" name="Auto::StructureSelectNext"/>
<rootContext xmi:id="_2e3VkNc0EeKw4vqlprE5Ug" elementId="StructureSelectPrevious" name="Auto::StructureSelectPrevious"/>
<rootContext xmi:id="_2e3Vktc0EeKw4vqlprE5Ug" elementId="StructureSelectHistory" name="Auto::StructureSelectHistory"/>
<rootContext xmi:id="_2tiDsNc0EeKw4vqlprE5Ug" elementId="org.eclipse.search.searchActionSet" name="Auto::org.eclipse.search.searchActionSet"/>
<rootContext xmi:id="_2tiqwNc0EeKw4vqlprE5Ug" elementId="org.eclipse.team.ui.actionSet" name="Auto::org.eclipse.team.ui.actionSet"/>
<rootContext xmi:id="_2tiqwtc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.edit.text.actionSet.annotationNavigation" name="Auto::org.eclipse.ui.edit.text.actionSet.annotationNavigation"/>
<rootContext xmi:id="_2tiqxNc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.edit.text.actionSet.navigation" name="Auto::org.eclipse.ui.edit.text.actionSet.navigation"/>
<rootContext xmi:id="_2tjR0Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo" name="Auto::org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo"/>
<rootContext xmi:id="_2tjR0tc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.externaltools.ExternalToolsSet" name="Auto::org.eclipse.ui.externaltools.ExternalToolsSet"/>
<rootContext xmi:id="_2tjR1Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.edit.text.actionSet.presentation" name="Auto::org.eclipse.ui.edit.text.actionSet.presentation"/>
<rootContext xmi:id="_2tj44Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.breakpointActionSet" name="Auto::org.eclipse.debug.ui.breakpointActionSet"/>
<rootContext xmi:id="_2tj44tc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.debugActionSet" name="Auto::org.eclipse.debug.ui.debugActionSet"/>
<rootContext xmi:id="_2tj45Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.launchActionSet" name="Auto::org.eclipse.debug.ui.launchActionSet"/>
<rootContext xmi:id="_2tkf8Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.profileActionSet" name="Auto::org.eclipse.debug.ui.profileActionSet"/>
<rootContext xmi:id="_2tkf8tc0EeKw4vqlprE5Ug" elementId="org.eclipse.mylyn.context.ui.actionSet" name="Auto::org.eclipse.mylyn.context.ui.actionSet"/>
<rootContext xmi:id="_2tkf9Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.mylyn.tasks.ui.navigation" name="Auto::org.eclipse.mylyn.tasks.ui.navigation"/>
<rootContext xmi:id="_2tlHANc0EeKw4vqlprE5Ug" elementId="org.eclipse.mylyn.tasks.ui.navigation.additions" name="Auto::org.eclipse.mylyn.tasks.ui.navigation.additions"/>
<rootContext xmi:id="_2tlHAtc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.cheatsheets.actionSet" name="Auto::org.eclipse.ui.cheatsheets.actionSet"/>
<rootContext xmi:id="_2tlHBNc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.NavigateActionSet" name="Auto::org.eclipse.ui.NavigateActionSet"/>
<rootContext xmi:id="_2tluENc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.actionSet.keyBindings" name="Auto::org.eclipse.ui.actionSet.keyBindings"/>
<rootContext xmi:id="_2tluEtc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.WorkingSetModificationActionSet" name="Auto::org.eclipse.ui.WorkingSetModificationActionSet"/>
<rootContext xmi:id="_2tmVINc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.WorkingSetActionSet" name="Auto::org.eclipse.ui.WorkingSetActionSet"/>
<rootContext xmi:id="_2tmVItc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.actionSet.openFiles" name="Auto::org.eclipse.ui.actionSet.openFiles"/>
<rootContext xmi:id="_2tmVJNc0EeKw4vqlprE5Ug" elementId="org.eclipse.ant.ui.actionSet.presentation" name="Auto::org.eclipse.ant.ui.actionSet.presentation"/>
<rootContext xmi:id="_2tm8MNc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.debug.ui.JDTDebugActionSet" name="Auto::org.eclipse.jdt.debug.ui.JDTDebugActionSet"/>
<rootContext xmi:id="_2tm8Mtc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.junit.JUnitActionSet" name="Auto::org.eclipse.jdt.junit.JUnitActionSet"/>
<rootContext xmi:id="_2tm8NNc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.jdt.ui.text.java.actionSet.presentation"/>
<rootContext xmi:id="_2tnjQdc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.jdt.ui.JavaElementCreationActionSet"/>
<rootContext xmi:id="_2tnjQ9c0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.ui.JavaActionSet" name="Auto::org.eclipse.jdt.ui.JavaActionSet"/>
<rootContext xmi:id="_2toKUNc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.ui.A_OpenActionSet" name="Auto::org.eclipse.jdt.ui.A_OpenActionSet"/>
<rootContext xmi:id="_2toKUtc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.ui.CodingActionSet" name="Auto::org.eclipse.jdt.ui.CodingActionSet"/>
<rootContext xmi:id="_2toxYNc0EeKw4vqlprE5Ug" elementId="org.eclipse.jdt.ui.SearchActionSet" name="Auto::org.eclipse.jdt.ui.SearchActionSet"/>
<rootContext xmi:id="_2tpYcNc0EeKw4vqlprE5Ug" elementId="adt.actionSet.wizards" name="Auto::adt.actionSet.wizards"/>
<rootContext xmi:id="_2tp_gNc0EeKw4vqlprE5Ug" elementId="adt.actionSet.refactorings" name="Auto::adt.actionSet.refactorings"/>
<rootContext xmi:id="_2tqmkNc0EeKw4vqlprE5Ug" elementId="adt.actionSet.avdManager" name="Auto::adt.actionSet.avdManager"/>
<rootContext xmi:id="_2tqmktc0EeKw4vqlprE5Ug" elementId="adt.actionSet.lint" name="Auto::adt.actionSet.lint"/>
<rootContext xmi:id="_2tqmlNc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.gltrace.actionset" name="Auto::com.android.ide.eclipse.gltrace.actionset"/>
<rootContext xmi:id="_2trNoNc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.debug.ui.debugActionSet" name="Auto::org.eclipse.cdt.debug.ui.debugActionSet"/>
<rootContext xmi:id="_2trNotc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.debug.ui.reverseDebuggingActionSet" name="Auto::org.eclipse.cdt.debug.ui.reverseDebuggingActionSet"/>
<rootContext xmi:id="_2trNpNc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.debug.ui.tracepointActionSet" name="Auto::org.eclipse.cdt.debug.ui.tracepointActionSet"/>
<rootContext xmi:id="_2tr0sdc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.debug.ui.debugViewLayoutActionSet" name="Auto::org.eclipse.cdt.debug.ui.debugViewLayoutActionSet"/>
<rootContext xmi:id="_2tr0s9c0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.dsf.debug.ui.updateModes" name="Auto::org.eclipse.cdt.dsf.debug.ui.updateModes"/>
<rootContext xmi:id="_2tsbwNc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.make.ui.updateActionSet" name="Auto::org.eclipse.cdt.make.ui.updateActionSet"/>
<rootContext xmi:id="_2ttC0Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.make.ui.makeTargetActionSet" name="Auto::org.eclipse.cdt.make.ui.makeTargetActionSet"/>
<rootContext xmi:id="_2ttC0tc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.CodingActionSet" name="Auto::org.eclipse.cdt.ui.CodingActionSet"/>
<rootContext xmi:id="_2ttp4Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.SearchActionSet" name="Auto::org.eclipse.cdt.ui.SearchActionSet"/>
<rootContext xmi:id="_2ttp4tc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.NavigationActionSet" name="Auto::org.eclipse.cdt.ui.NavigationActionSet"/>
<rootContext xmi:id="_2ttp5Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.OpenActionSet" name="Auto::org.eclipse.cdt.ui.OpenActionSet"/>
<rootContext xmi:id="_2tuQ8Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.buildConfigActionSet" name="Auto::org.eclipse.cdt.ui.buildConfigActionSet"/>
<rootContext xmi:id="_2tuQ8tc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.CElementCreationActionSet" name="Auto::org.eclipse.cdt.ui.CElementCreationActionSet"/>
<rootContext xmi:id="_2tuQ9Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.text.c.actionSet.presentation" name="Auto::org.eclipse.cdt.ui.text.c.actionSet.presentation"/>
<rootContext xmi:id="_2tu4ANc0EeKw4vqlprE5Ug" elementId="org.tigris.subversion.subclipse.actionSet" name="Auto::org.tigris.subversion.subclipse.actionSet"/>
<rootContext xmi:id="_Ytt20Nd9EeKGWLE-r9YanA" elementId="com.android.ide.eclipse.adt.debug.LaunchConfigType.internal.org.eclipse.debug.ui.DebugPerspective" name="Auto::com.android.ide.eclipse.adt.debug.LaunchConfigType.internal.org.eclipse.debug.ui.DebugPerspective"/>
<rootContext xmi:id="_HoCxEA28EeOhNvzi9gocLA" elementId="org.eclipse.jdt.launching.localJavaApplication.internal.org.eclipse.debug.ui.DebugPerspective" name="Auto::org.eclipse.jdt.launching.localJavaApplication.internal.org.eclipse.debug.ui.DebugPerspective"/>
<rootContext xmi:id="_YF8dgLTqEeOtirkdr749Nw" elementId="org.eclipse.m2e.jdt.downloadSourcesAction" name="Auto::org.eclipse.m2e.jdt.downloadSourcesAction"/>
<rootContext xmi:id="_YF9EkLTqEeOtirkdr749Nw" elementId="org.eclipse.mylyn.wikitext.tasks.ui.editor.folding.auto" name="Auto::org.eclipse.mylyn.wikitext.tasks.ui.editor.folding.auto"/>
<rootContext xmi:id="_YF9roLTqEeOtirkdr749Nw" elementId="org.eclipse.wb.core.editor.actions.SwitchAction" name="Auto::org.eclipse.wb.core.editor.actions.SwitchAction"/>
<rootContext xmi:id="_YMM2gLTqEeOtirkdr749Nw" elementId="org.eclipse.egit.ui.gitaction" name="Auto::org.eclipse.egit.ui.gitaction"/>
<rootContext xmi:id="_YMNdkLTqEeOtirkdr749Nw" elementId="org.eclipse.egit.ui.navigation" name="Auto::org.eclipse.egit.ui.navigation"/>
<rootContext xmi:id="_YMNdkrTqEeOtirkdr749Nw" elementId="org.eclipse.mylyn.java.actionSet" name="Auto::org.eclipse.mylyn.java.actionSet"/>
<rootContext xmi:id="_YMNdlLTqEeOtirkdr749Nw" elementId="org.eclipse.mylyn.java.actionSet.browsing" name="Auto::org.eclipse.mylyn.java.actionSet.browsing"/>
<rootContext xmi:id="_YMOEoLTqEeOtirkdr749Nw" elementId="org.eclipse.mylyn.doc.actionSet" name="Auto::org.eclipse.mylyn.doc.actionSet"/>
<rootContext xmi:id="_YMOEorTqEeOtirkdr749Nw" elementId="org.eclipse.team.cvs.ui.CVSActionSet" name="Auto::org.eclipse.team.cvs.ui.CVSActionSet"/>
<rootContext xmi:id="_YMOrsLTqEeOtirkdr749Nw" elementId="org.eclipse.wb.core.ui.actionset" name="Auto::org.eclipse.wb.core.ui.actionset"/>
<rootContext xmi:id="_CO_toLUREeOzJuouN5K4ZA" elementId="com.android.ide.eclipse.ndk.debug.LaunchConfigType.internal.org.eclipse.debug.ui.DebugPerspective" name="Auto::com.android.ide.eclipse.ndk.debug.LaunchConfigType.internal.org.eclipse.debug.ui.DebugPerspective"/>
<descriptors xmi:id="_2dnYYNc0EeKw4vqlprE5Ug" 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="_2dpNkNc0EeKw4vqlprE5Ug" 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="_2dqbsNc0EeKw4vqlprE5Ug" 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="_2dqbsdc0EeKw4vqlprE5Ug" 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="_2drCwNc0EeKw4vqlprE5Ug" 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="_2drCwdc0EeKw4vqlprE5Ug" 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="_2drCwtc0EeKw4vqlprE5Ug" 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="_2drCw9c0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.console.ConsoleView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console//icons/full/cview16/console_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:General</tags>
</descriptors>
<descriptors xmi:id="_2drp0Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.DebugView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui//icons/full/eview16/debug_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:Debug</tags>
</descriptors>
<descriptors xmi:id="_2drp0dc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.BreakpointView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui//icons/full/eview16/breakpoint_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:Debug</tags>
</descriptors>
<descriptors xmi:id="_2drp0tc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.VariableView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui//icons/full/eview16/variable_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:Debug</tags>
</descriptors>
<descriptors xmi:id="_2dsQ4Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.ExpressionView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui//icons/full/eview16/watchlist_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:Debug</tags>
</descriptors>
<descriptors xmi:id="_2dsQ4dc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.RegisterView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui//icons/full/eview16/register_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:Debug</tags>
</descriptors>
<descriptors xmi:id="_2dsQ4tc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.ModuleView" label="Modules" iconURI="platform:/plugin/org.eclipse.debug.ui//icons/full/eview16/module_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:Debug</tags>
</descriptors>
<descriptors xmi:id="_2ds38Nc0EeKw4vqlprE5Ug" elementId="org.eclipse.debug.ui.MemoryView" label="Memory" iconURI="platform:/plugin/org.eclipse.debug.ui//icons/full/eview16/memory_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:Debug</tags>
</descriptors>
<descriptors xmi:id="_2ds38dc0EeKw4vqlprE5Ug" elementId="org.eclipse.gef.ui.palette_view" label="Palette" iconURI="platform:/plugin/org.eclipse.gef/icons/palette_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:General</tags>
</descriptors>
<descriptors xmi:id="_2dtfANc0EeKw4vqlprE5Ug" elementId="org.eclipse.mylyn.commons.repositories.ui.navigator.Repositories" label="Team Repositories" iconURI="platform:/plugin/org.eclipse.mylyn.commons.repositories.ui/icons/eview16/repositories.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:Mylyn</tags>
</descriptors>
<descriptors xmi:id="_2dtfAdc0EeKw4vqlprE5Ug" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" label="Task List" iconURI="platform:/plugin/org.eclipse.mylyn.tasks.ui/icons/eview16/task-list.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:Mylyn</tags>
</descriptors>
<descriptors xmi:id="_2dtfAtc0EeKw4vqlprE5Ug" elementId="org.eclipse.mylyn.tasks.ui.views.repositories" label="Task Repositories" iconURI="platform:/plugin/org.eclipse.mylyn.tasks.ui/icons/eview16/repositories.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:Mylyn</tags>
</descriptors>
<descriptors xmi:id="_2duGENc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.internal.introview" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.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="_2dwiUNc0EeKw4vqlprE5Ug" 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="_2dxJYNc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.ProgressView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide//icons/full/eview16/pview.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="_2dxJYdc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.ResourceNavigator" label="Navigator" iconURI="platform:/plugin/org.eclipse.ui.ide//icons/full/eview16/filenav_nav.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="_2dxJYtc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.BookmarkView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide//icons/full/eview16/bkmrk_nav.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="_2dxwcNc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.TaskList" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide//icons/full/eview16/tasks_tsk.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="_2dxwcdc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.ProblemView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide//icons/full/eview16/problems_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:General</tags>
</descriptors>
<descriptors xmi:id="_2dxwctc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.AllMarkersView" label="Markers" iconURI="platform:/plugin/org.eclipse.ui.ide//icons/full/eview16/problems_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:General</tags>
</descriptors>
<descriptors xmi:id="_2dyXgNc0EeKw4vqlprE5Ug" 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="_2dyXgdc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.PropertySheet" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views//icons/full/eview16/prop_ps.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="_2dyXgtc0EeKw4vqlprE5Ug" elementId="org.eclipse.ui.views.ContentOutline" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views//icons/full/eview16/outline_co.gif" 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="_2dyXg9c0EeKw4vqlprE5Ug" 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="_2dy-kNc0EeKw4vqlprE5Ug" 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="_2dy-kdc0EeKw4vqlprE5Ug" 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="_2dy-ktc0EeKw4vqlprE5Ug" 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="_2dzloNc0EeKw4vqlprE5Ug" 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="_2dzlodc0EeKw4vqlprE5Ug" 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="_2dzlotc0EeKw4vqlprE5Ug" 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="_2dzlo9c0EeKw4vqlprE5Ug" 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="_2d0MsNc0EeKw4vqlprE5Ug" 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="_2d0Msdc0EeKw4vqlprE5Ug" 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="_2d0Mstc0EeKw4vqlprE5Ug" 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="_2d0zwNc0EeKw4vqlprE5Ug" 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="_2d0zwdc0EeKw4vqlprE5Ug" 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="_2d0zwtc0EeKw4vqlprE5Ug" elementId="com.collabnet.subversion.merge.views.MergeResultsView" label="Merge Results" iconURI="platform:/plugin/com.collabnet.subversion.merge/icons/merge.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:SVN</tags>
</descriptors>
<descriptors xmi:id="_2d1a0Nc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.editors.resources.explorer.ResourceExplorerView" label="Resource Explorer" iconURI="platform:/plugin/com.android.ide.eclipse.adt/icons/draw9patch-16.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d1a0dc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.adt.internal.lint.LintViewPart" label="Lint Warnings" iconURI="platform:/plugin/com.android.ide.eclipse.adt/icons/lintview.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d1a0tc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.ddms.views.DeviceView" label="Devices" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/device.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d1a09c0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.ddms.views.OldLogCatView" label="LogCat (deprecated)" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/android.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d2B4Nc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.ddms.views.LogCatView" label="LogCat" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/logcat.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d2B4dc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.ddms.views.ThreadView" label="Threads" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/thread.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d2B4tc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.ddms.views.HeapView" label="Heap" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/heap.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d2o8Nc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.ddms.views.FileExplorerView" label="File Explorer" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/android.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d2o8dc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.ddms.views.EmulatorControlView" label="Emulator Control" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/emulator-16.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d2o8tc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.ddms.views.AllocTrackerView" label="Allocation Tracker" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/heap.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d2o89c0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.ddms.views.NetworkStatsView" label="Network Statistics" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/networkstats.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d3QANc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.ddms.views.SysInfoView" label="System Information" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d3QAdc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.gltrace.views.FrameBuffer" label="Frame Summary" iconURI="platform:/plugin/com.android.ide.eclipse.gldebugger/icons/opengl.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:Tracer for OpenGL ES</tags>
</descriptors>
<descriptors xmi:id="_2d3QAtc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.gltrace.views.State" label="GL State" iconURI="platform:/plugin/com.android.ide.eclipse.gldebugger/icons/opengl.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:Tracer for OpenGL ES</tags>
</descriptors>
<descriptors xmi:id="_2d33ENc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.gltrace.views.Details" label="Details" iconURI="platform:/plugin/com.android.ide.eclipse.gldebugger/icons/opengl.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:Tracer for OpenGL ES</tags>
</descriptors>
<descriptors xmi:id="_2d33Edc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.hierarchyviewer.views.DeviceSelectorView" label="Windows" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/device.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d33Etc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.hierarchyviewer.views.PixelPerfectView" label="Pixel Perfect" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/pixel-perfect.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d4eINc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.hierarchyviewer.views.PixelPerfectLoupeView" label="Pixel Perfect Loupe" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/pixel-perfect.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d4eIdc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.hierarchyviewer.views.PixelPerfectTreeView" label="Pixel Perfect Tree" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/pixel-perfect.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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d4eItc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.hierarchyviewer.views.TreeViewView" label="Tree View" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/tree-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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d4eI9c0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.hierarchyviewer.views.PropertyView" label="View Properties" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/tree-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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d5FMNc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.hierarchyviewer.views.TreeOverviewView" label="Tree Overview" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/tree-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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d5FMdc0EeKw4vqlprE5Ug" elementId="com.android.ide.eclipse.hierarchyviewer.views.LayoutView" label="Layout View" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/tree-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:Android</tags>
</descriptors>
<descriptors xmi:id="_2d5FMtc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.codan.internal.ui.views.ProblemDetails" label="Problem Details" iconURI="platform:/plugin/org.eclipse.cdt.codan.ui/icons/edit_bug.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:&C/C++</tags>
</descriptors>
<descriptors xmi:id="_2d5sQNc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.debug.ui.executablesView" label="Executables" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/obj16/exec_view_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:Debug</tags>
</descriptors>
<descriptors xmi:id="_2d5sQdc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.debug.ui.SignalsView" label="Signals" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/view16/signals_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:Debug</tags>
</descriptors>
<descriptors xmi:id="_2d5sQtc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.dsf.gdb.ui.tracecontrol.view" label="Trace Control" iconURI="platform:/plugin/org.eclipse.cdt.dsf.gdb.ui/icons/full/view16/tracecontrol_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:Debug</tags>
</descriptors>
<descriptors xmi:id="_2d5sQ9c0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.view" label="Disassembly" iconURI="platform:/plugin/org.eclipse.cdt.dsf.ui/icons/disassembly.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:Debug</tags>
</descriptors>
<descriptors xmi:id="_2d6TUNc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.make.ui.views.MakeView" label="Make Target" iconURI="platform:/plugin/org.eclipse.cdt.make.ui/icons/view16/make_target.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:Make</tags>
</descriptors>
<descriptors xmi:id="_2d6TUdc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.CView" label="C/C++ Projects" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/cview.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:&C/C++</tags>
</descriptors>
<descriptors xmi:id="_2d6TUtc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.IndexView" label="C/C++ Index" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/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:&C/C++</tags>
</descriptors>
<descriptors xmi:id="_2d66YNc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.includeBrowser" label="Include Browser" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/includeBrowser.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:&C/C++</tags>
</descriptors>
<descriptors xmi:id="_2d66Ydc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.callHierarchy" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/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:&C/C++</tags>
</descriptors>
<descriptors xmi:id="_2d66Ytc0EeKw4vqlprE5Ug" elementId="org.eclipse.cdt.ui.typeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/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:&C/C++</tags>
</descriptors>
<descriptors xmi:id="_2d7hcNc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" label="Snippets" iconURI="platform:/plugin/org.eclipse.wst.common.snippets//icons/snippets_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:General</tags>
</descriptors>
<descriptors xmi:id="_2d7hcdc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.xml.ui.views.annotations.XMLAnnotationsView" label="Documentation" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/obj16/comment_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:XML</tags>
</descriptors>
<descriptors xmi:id="_2d7hctc0EeKw4vqlprE5Ug" elementId="org.eclipse.wst.xml.ui.contentmodel.view" label="Content Model" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/view16/hierarchy.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:XML</tags>
</descriptors>
<descriptors xmi:id="_2d7hc9c0EeKw4vqlprE5Ug" elementId="org.tigris.subversion.subclipse.ui.repository.RepositoriesView" label="SVN Repositories" iconURI="platform:/plugin/org.tigris.subversion.subclipse.ui/icons/full/cview16/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:SVN</tags>
</descriptors>
<descriptors xmi:id="_2d8IgNc0EeKw4vqlprE5Ug" elementId="org.tigris.subversion.subclipse.ui.svnproperties.SvnPropertiesView" label="SVN Properties" iconURI="platform:/plugin/org.tigris.subversion.subclipse.ui/icons/full/cview16/props_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:SVN</tags>
</descriptors>
<descriptors xmi:id="_2d8Igdc0EeKw4vqlprE5Ug" elementId="org.tigris.subversion.subclipse.ui.svnproperties.SvnRevPropertiesView" label="SVN Rev Properties" iconURI="platform:/plugin/org.tigris.subversion.subclipse.ui/icons/full/cview16/props_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:SVN</tags>
</descriptors>
<descriptors xmi:id="_2d8Igtc0EeKw4vqlprE5Ug" elementId="org.tigris.subversion.subclipse.ui.annotations.AnnotateView" label="SVN Annotate" iconURI="platform:/plugin/org.tigris.subversion.subclipse.ui/icons/full/cview16/annotate_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:SVN</tags>
</descriptors>
<descriptors xmi:id="_2d8vkNc0EeKw4vqlprE5Ug" elementId="org.tigris.subversion.subclipse.ui.conflicts.TreeConflictsView" label="SVN Tree Conflicts" iconURI="platform:/plugin/org.tigris.subversion.subclipse.ui/icons/full/cview16/tree_conflicts_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:SVN</tags>
</descriptors>
<descriptors xmi:id="_YFDFoLTqEeOtirkdr749Nw" 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="_YFETwLTqEeOtirkdr749Nw" 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="_YFE60LTqEeOtirkdr749Nw" 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="_YFE60bTqEeOtirkdr749Nw" 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>