workbench.xmi
384.2 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
<?xml version="1.0" encoding="ASCII"?>
<application:Application xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:advanced="http://www.eclipse.org/ui/2010/UIModel/application/ui/advanced" xmlns:application="http://www.eclipse.org/ui/2010/UIModel/application" xmlns:basic="http://www.eclipse.org/ui/2010/UIModel/application/ui/basic" xmlns:menu="http://www.eclipse.org/ui/2010/UIModel/application/ui/menu" xmi:id="_K-9gEWaLEe-_AJixeOhSjw" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_K-9gEmaLEe-_AJixeOhSjw" bindingContexts="_K-9gG2aLEe-_AJixeOhSjw">
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<workbench>
<mruList/>
</workbench>"/>
<tags>activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
<children xsi:type="basic:TrimmedWindow" xmi:id="_K-9gEmaLEe-_AJixeOhSjw" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_LLL-MmaLEe-_AJixeOhSjw" label="%trimmedwindow.label.eclipseSDK" x="160" y="160" width="1024" height="768">
<persistedState key="coolBarVisible" value="true"/>
<persistedState key="perspectiveBarVisible" value="true"/>
<persistedState key="isRestored" value="true"/>
<persistedState key="show_in_time" value="<?xml version="1.0" encoding="UTF-8"?>
<show_in_time/>"/>
<persistedState key="workingSets" value="<?xml version="1.0" encoding="UTF-8"?>
<workingSets/>"/>
<persistedState key="aggregateWorkingSetId" value="Aggregate for window 1724993343206"/>
<tags>topLevel</tags>
<tags>shellMaximized</tags>
<children xsi:type="basic:PartSashContainer" xmi:id="_LLL-MmaLEe-_AJixeOhSjw" selectedElement="_LLL-M2aLEe-_AJixeOhSjw" horizontal="true">
<children xsi:type="advanced:PerspectiveStack" xmi:id="_LLL-M2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ide.perspectivestack" containerData="7500" selectedElement="_LSMlImaLEe-_AJixeOhSjw">
<children xsi:type="advanced:Perspective" xmi:id="_LSMlImaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.JavaPerspective" selectedElement="_LSMlI2aLEe-_AJixeOhSjw" label="Java" iconURI="platform:/plugin/org.eclipse.jdt.ui/$nl$/icons/full/eview16/jperspective.png">
<persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:print,persp.hideToolbarSC:org.eclipse.ui.edit.undo,persp.hideToolbarSC:org.eclipse.ui.edit.redo,persp.hideToolbarSC:org.eclipse.ui.edit.text.toggleShowSelectedElementOnly,persp.hideToolbarSC:org.eclipse.debug.ui.commands.RunToLine,persp.hideToolbarSC:org.eclipse.jdt.ui.actions.OpenProjectWizard,"/>
<tags>persp.actionSet:org.eclipse.ui.cheatsheets.actionSet</tags>
<tags>persp.actionSet:org.eclipse.search.searchActionSet</tags>
<tags>persp.actionSet:org.eclipse.text.quicksearch.actionSet</tags>
<tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation</tags>
<tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation</tags>
<tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo</tags>
<tags>persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet</tags>
<tags>persp.actionSet:org.eclipse.ui.actionSet.keyBindings</tags>
<tags>persp.actionSet:org.eclipse.ui.actionSet.openFiles</tags>
<tags>persp.actionSet:org.springsource.ide.eclipse.commons.launch.actionSet</tags>
<tags>persp.actionSet:org.eclipse.debug.ui.launchActionSet</tags>
<tags>persp.actionSet:org.eclipse.jdt.ui.JavaActionSet</tags>
<tags>persp.actionSet:org.eclipse.jdt.ui.JavaElementCreationActionSet</tags>
<tags>persp.actionSet:org.eclipse.ui.NavigateActionSet</tags>
<tags>persp.viewSC:org.eclipse.jdt.ui.PackageExplorer</tags>
<tags>persp.viewSC:org.eclipse.jdt.ui.TypeHierarchy</tags>
<tags>persp.viewSC:org.eclipse.jdt.ui.SourceView</tags>
<tags>persp.viewSC:org.eclipse.jdt.ui.JavadocView</tags>
<tags>persp.viewSC:org.eclipse.search.ui.views.SearchView</tags>
<tags>persp.viewSC:org.eclipse.ui.console.ConsoleView</tags>
<tags>persp.viewSC:org.eclipse.ui.views.ContentOutline</tags>
<tags>persp.viewSC:org.eclipse.ui.views.ProblemView</tags>
<tags>persp.viewSC:org.eclipse.ui.views.ResourceNavigator</tags>
<tags>persp.viewSC:org.eclipse.ui.views.TaskList</tags>
<tags>persp.viewSC:org.eclipse.ui.views.ProgressView</tags>
<tags>persp.viewSC:org.eclipse.ui.navigator.ProjectExplorer</tags>
<tags>persp.viewSC:org.eclipse.ui.texteditor.TemplatesView</tags>
<tags>persp.viewSC:org.eclipse.pde.runtime.LogView</tags>
<tags>persp.newWizSC:org.eclipse.jdt.ui.wizards.JavaProjectWizard</tags>
<tags>persp.newWizSC:org.eclipse.jdt.ui.wizards.NewPackageCreationWizard</tags>
<tags>persp.newWizSC:org.eclipse.jdt.ui.wizards.NewClassCreationWizard</tags>
<tags>persp.newWizSC:org.eclipse.jdt.ui.wizards.NewInterfaceCreationWizard</tags>
<tags>persp.newWizSC:org.eclipse.jdt.ui.wizards.NewEnumCreationWizard</tags>
<tags>persp.newWizSC:org.eclipse.jdt.ui.wizards.NewRecordCreationWizard</tags>
<tags>persp.newWizSC:org.eclipse.jdt.ui.wizards.NewAnnotationCreationWizard</tags>
<tags>persp.newWizSC:org.eclipse.jdt.ui.wizards.NewSourceFolderCreationWizard</tags>
<tags>persp.newWizSC:org.eclipse.jdt.ui.wizards.NewSnippetFileCreationWizard</tags>
<tags>persp.newWizSC:org.eclipse.jdt.ui.wizards.NewJavaWorkingSetWizard</tags>
<tags>persp.newWizSC:org.eclipse.ui.wizards.new.folder</tags>
<tags>persp.newWizSC:org.eclipse.ui.wizards.new.file</tags>
<tags>persp.newWizSC:org.eclipse.ui.editors.wizards.UntitledTextFileWizard</tags>
<tags>persp.perspSC:org.eclipse.jdt.ui.JavaBrowsingPerspective</tags>
<tags>persp.perspSC:org.eclipse.debug.ui.DebugPerspective</tags>
<tags>persp.showIn:org.eclipse.jdt.ui.PackageExplorer</tags>
<tags>persp.showIn:org.eclipse.team.ui.GenericHistoryView</tags>
<tags>persp.showIn:org.eclipse.ui.navigator.ProjectExplorer</tags>
<tags>persp.actionSet:org.eclipse.debug.ui.breakpointActionSet</tags>
<tags>persp.actionSet:org.eclipse.jdt.debug.ui.JDTDebugActionSet</tags>
<tags>persp.newWizSC:org.eclipse.jdt.junit.wizards.NewTestCaseCreationWizard</tags>
<tags>persp.actionSet:org.eclipse.jdt.junit.JUnitActionSet</tags>
<tags>persp.showIn:org.eclipse.egit.ui.RepositoriesView</tags>
<tags>persp.newWizSC:org.springsource.ide.eclipse.commons.gettingstarted.wizard.boot.NewSpringBootWizard</tags>
<tags>persp.newWizSC:org.springsource.ide.eclipse.gettingstarted.wizards.import.generic.newalias</tags>
<tags>persp.viewSC:org.eclipse.tm.terminal.view.ui.TerminalsView</tags>
<tags>persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView</tags>
<tags>persp.viewSC:org.eclipse.ant.ui.views.AntView</tags>
<children xsi:type="basic:PartSashContainer" xmi:id="_LSMlI2aLEe-_AJixeOhSjw" selectedElement="_LSMlJGaLEe-_AJixeOhSjw" horizontal="true">
<children xsi:type="basic:PartSashContainer" xmi:id="_LSMlJGaLEe-_AJixeOhSjw" containerData="2500" selectedElement="_LSMlJWaLEe-_AJixeOhSjw">
<children xsi:type="basic:PartSashContainer" xmi:id="_LSMlJWaLEe-_AJixeOhSjw" containerData="6000" selectedElement="_LSMlJmaLEe-_AJixeOhSjw">
<children xsi:type="basic:PartStack" xmi:id="_LSMlJmaLEe-_AJixeOhSjw" elementId="left" containerData="6600" selectedElement="_LSMlJ2aLEe-_AJixeOhSjw">
<tags>org.eclipse.e4.primaryNavigationStack</tags>
<tags>active</tags>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlJ2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.PackageExplorer" ref="_LSCNEGaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:Java</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlKGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_LSDbMGaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:Java</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlKWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigator.ProjectExplorer" toBeRendered="false" ref="_LSDbMWaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:General</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlKmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.junit.ResultView" toBeRendered="false" ref="_LSL-EGaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:Java</tags>
</children>
</children>
<children xsi:type="basic:PartStack" xmi:id="_LSMlK2aLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.dash.views.BootDashViewMStack" containerData="3400" selectedElement="_LSMlLGaLEe-_AJixeOhSjw">
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlLGaLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.dash.views.BootDashView" ref="_LSL-EmaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:Other</tags>
</children>
</children>
</children>
<children xsi:type="basic:PartStack" xmi:id="_LSMlLWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewMStack" toBeRendered="false" containerData="4000">
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlLmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesView" toBeRendered="false" ref="_LSL-EWaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:Git</tags>
</children>
</children>
</children>
<children xsi:type="basic:PartSashContainer" xmi:id="_LSMlL2aLEe-_AJixeOhSjw" containerData="7500">
<children xsi:type="basic:PartSashContainer" xmi:id="_LSMlMGaLEe-_AJixeOhSjw" containerData="7500" horizontal="true">
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlMWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_LR8GcGaLEe-_AJixeOhSjw"/>
<children xsi:type="basic:PartStack" xmi:id="_LSMlMmaLEe-_AJixeOhSjw" elementId="right" containerData="2500" selectedElement="_LSMlM2aLEe-_AJixeOhSjw">
<tags>org.eclipse.e4.secondaryNavigationStack</tags>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlM2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ContentOutline" ref="_LSEpUmaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:General</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlNGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.texteditor.TemplatesView" toBeRendered="false" ref="_LSEpU2aLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:General</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlNWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.minimap.MinimapView" toBeRendered="false" ref="_LSLXAGaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:General</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlNmaLEe-_AJixeOhSjw" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_LSMlIWaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:Ant</tags>
</children>
</children>
</children>
<children xsi:type="basic:PartStack" xmi:id="_LSMlN2aLEe-_AJixeOhSjw" elementId="bottom" containerData="2500" selectedElement="_LSMlOGaLEe-_AJixeOhSjw">
<tags>org.eclipse.e4.secondaryDataStack</tags>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlOGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ProblemView" ref="_LSECQGaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:General</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlOWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.JavadocView" ref="_LSECQWaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:Java</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlOmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.SourceView" ref="_LSECQmaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:Java</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlO2aLEe-_AJixeOhSjw" elementId="org.eclipse.search.ui.views.SearchView" toBeRendered="false" ref="_LSECQ2aLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:General</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlPGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.console.ConsoleView" toBeRendered="false" ref="_LSECRGaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:General</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlPWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_LSEpUGaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:General</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlPmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ProgressView" toBeRendered="false" ref="_LSEpUWaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:General</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LSMlP2aLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" toBeRendered="false" ref="_LSMlIGaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:Terminal</tags>
</children>
</children>
</children>
</children>
</children>
</children>
<children xsi:type="basic:PartStack" xmi:id="_LLL-NGaLEe-_AJixeOhSjw" elementId="stickyFolderRight" toBeRendered="false" containerData="2500">
<children xsi:type="advanced:Placeholder" xmi:id="_LLL-NWaLEe-_AJixeOhSjw" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_LLLXIGaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:Help</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LLL-NmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.internal.introview" toBeRendered="false" ref="_LLL-MGaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:General</tags>
</children>
<children xsi:type="advanced:Placeholder" xmi:id="_LLL-N2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" toBeRendered="false" ref="_LLL-MWaLEe-_AJixeOhSjw" closeable="true">
<tags>View</tags>
<tags>categoryTag:Help</tags>
</children>
</children>
</children>
<sharedElements xsi:type="basic:Part" xmi:id="_LLLXIGaLEe-_AJixeOhSjw" elementId="org.eclipse.help.ui.HelpView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.help.ui.internal.views.HelpView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.help.ui"/>
<tags>View</tags>
<tags>categoryTag:Help</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LLL-MGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.internal.introview" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.ViewIntroAdapterPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LLL-MWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.cheatsheets.views.CheatSheetView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.cheatsheets"/>
<tags>View</tags>
<tags>categoryTag:Help</tags>
</sharedElements>
<sharedElements xsi:type="advanced:Area" xmi:id="_LR8GcGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.editorss">
<children xsi:type="basic:PartStack" xmi:id="_LR8GcWaLEe-_AJixeOhSjw" elementId="org.eclipse.e4.primaryDataStack">
<tags>org.eclipse.e4.primaryDataStack</tags>
<tags>EditorStack</tags>
</children>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSCNEGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.PackageExplorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view group_libraries="1" layout="2" linkWithEditor="0" rootMode="1" workingSetName="">
<customFilters userDefinedPatternsEnabled="false">
<xmlDefinedFilters>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.StaticsFilter" isEnabled="false"/>
<child filterId="org.eclipse.buildship.ui.packageexplorer.filter.gradle.buildfolder" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonSharedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyInnerPackageFilter" isEnabled="true"/>
<child filterId="org.eclipse.m2e.MavenModuleFilter" isEnabled="false"/>
<child filterId="org.eclipse.buildship.ui.packageexplorer.filter.gradle.subProject" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ClosedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.EmptyLibraryContainerFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.PackageDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.pde.ui.BinaryProjectFilter1" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LocalTypesFilter" isEnabled="false"/>
<child filterId="org.eclipse.pde.ui.ExternalPluginLibrariesFilter1" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.FieldsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer_patternFilterId_.*" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.SyntheticMembersFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ContainedLibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.HideInnerClassFilesFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.DeprecatedMembersFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ImportDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaElementFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.CuAndClassFileFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyPackageFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonPublicFilter" isEnabled="false"/>
</xmlDefinedFilters>
</customFilters>
</view>"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
<tags>active</tags>
<tags>activeOnClose</tags>
<menus xmi:id="_LVtMIGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.PackageExplorer">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_LVtMIWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.PackageExplorer" visible="false"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSDbMGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.TypeHierarchy" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/class_hi.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSDbMWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigator.ProjectExplorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Project Explorer" iconURI="platform:/plugin/org.eclipse.ui.navigator.resources/icons/full/eview16/resource_persp.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.navigator.resources.ProjectExplorer"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.navigator.resources"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSECQGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ProblemView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.ProblemsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view PRIMARY_SORT_FIELD="org.eclipse.ui.ide.severityAndDescriptionField" categoryGroup="org.eclipse.ui.ide.severity" markerContentGenerator="org.eclipse.ui.ide.problemsGenerator" partName="Problems">
<columnWidths org.eclipse.ui.ide.locationField="105" org.eclipse.ui.ide.markerType="105" org.eclipse.ui.ide.pathField="140" org.eclipse.ui.ide.resourceField="105" org.eclipse.ui.ide.severityAndDescriptionField="350"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.severityAndDescriptionField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.resourceField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.pathField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.locationField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.markerType"/>
</view>"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
<menus xmi:id="_LhEuoGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ProblemView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_LhEuoWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ProblemView" visible="false"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSECQWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.JavadocView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.JavadocView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSECQmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.SourceView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.SourceView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSECQ2aLEe-_AJixeOhSjw" elementId="org.eclipse.search.ui.views.SearchView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.search2.internal.ui.SearchView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSECRGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.console.ConsoleView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console/icons/full/cview16/console_view.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.console.ConsoleView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.console"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSEpUGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.BookmarkView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/bkmrk_nav.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.BookmarksView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSEpUWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ProgressView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/pview.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.progress.ProgressView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSEpUmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ContentOutline" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/outline_co.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.contentoutline.ContentOutline"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
<menus xmi:id="_LgeRsGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ContentOutline">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_LgeRsWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ContentOutline" visible="false"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSEpU2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.texteditor.TemplatesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Templates" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/templates.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.texteditor.templates.TemplatesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSLXAGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.minimap.MinimapView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Minimap" iconURI="platform:/plugin/org.eclipse.ui.workbench.texteditor/icons/full/eview16/minimap.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.minimap.MinimapView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.workbench.texteditor"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSL-EGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.junit.ResultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="JUnit" iconURI="platform:/plugin/org.eclipse.jdt.junit/icons/full/eview16/junit.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.junit.ui.TestRunnerViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.junit"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSL-EWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.repository.RepositoriesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSL-EmaLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.dash.views.BootDashView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Boot Dashboard" iconURI="platform:/plugin/org.springframework.ide.eclipse.boot.dash/icons/boot-icon.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.springframework.ide.eclipse.boot.dash.views.BootDashTreeView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.springframework.ide.eclipse.boot.dash"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/>
<tags>View</tags>
<tags>categoryTag:Other</tags>
<menus xmi:id="_LeoeoGaLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.dash.views.BootDashView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_LeoeoWaLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.dash.views.BootDashView" visible="false"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSMlIGaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Terminal" iconURI="platform:/plugin/org.eclipse.tm.terminal.view.ui/icons/eview16/terminal_view.gif" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.tm.terminal.view.ui.view.TerminalsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.tm.terminal.view.ui"/>
<tags>View</tags>
<tags>categoryTag:Terminal</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_LSMlIWaLEe-_AJixeOhSjw" elementId="org.eclipse.ant.ui.views.AntView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ant.internal.ui.views.AntView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ant.ui"/>
<tags>View</tags>
<tags>categoryTag:Ant</tags>
</sharedElements>
<trimBars xmi:id="_K-9gE2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.main.toolbar" contributorURI="platform:/plugin/org.eclipse.platform">
<children xsi:type="menu:ToolBar" xmi:id="_LMSxcGaLEe-_AJixeOhSjw" elementId="group.file" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_LMSxcWaLEe-_AJixeOhSjw" elementId="group.file" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_LMTYgGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.workbench.file">
<tags>Draggable</tags>
<children xsi:type="menu:HandledToolItem" xmi:id="_cbV3YGaLEe-45unrtIRCkA" elementId="print" visible="false" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.png" tooltip="Print" command="_K_YW_2aLEe-_AJixeOhSjw"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_LMTYgWaLEe-_AJixeOhSjw" elementId="group.edit" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_LMTYgmaLEe-_AJixeOhSjw" elementId="group.edit" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_LMTYg2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.workbench.edit" visible="false">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_LMTYhGaLEe-_AJixeOhSjw" elementId="additions" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_LMTYhWaLEe-_AJixeOhSjw" elementId="additions" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_LTGkEGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.launchActionSet">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_LStigGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_LS-BMGaLEe-_AJixeOhSjw" elementId="org.eclipse.search.searchActionSet">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_LMTYhmaLEe-_AJixeOhSjw" elementId="group.nav" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_LMTYh2aLEe-_AJixeOhSjw" elementId="group.nav" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_LMT_kGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.workbench.navigate">
<tags>Draggable</tags>
<children xsi:type="menu:HandledToolItem" xmi:id="_cbXskmaLEe-45unrtIRCkA" elementId="org.eclipse.ui.window.pinEditor" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.png" tooltip="Pin Editor" enabled="false" type="Check" command="_K_XwamaLEe-_AJixeOhSjw"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_LMT_kWaLEe-_AJixeOhSjw" elementId="group.editor" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_LMT_kmaLEe-_AJixeOhSjw" elementId="group.editor" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_LMT_k2aLEe-_AJixeOhSjw" elementId="group.help" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_LMT_lGaLEe-_AJixeOhSjw" elementId="group.help" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_LMT_lWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.workbench.help" visible="false">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_LNg5cGaLEe-_AJixeOhSjw" elementId="PerspectiveSpacer" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
<tags>stretch</tags>
<tags>SHOW_RESTORE_MENU</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_LNhggGaLEe-_AJixeOhSjw" elementId="PerspectiveSwitcher" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher">
<tags>Draggable</tags>
<tags>HIDEABLE</tags>
<tags>SHOW_RESTORE_MENU</tags>
</children>
</trimBars>
<trimBars xmi:id="_K-9gFGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.trim.status" contributorURI="platform:/plugin/org.eclipse.platform" side="Bottom">
<children xsi:type="menu:ToolControl" xmi:id="_K-9gFWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.StatusLine" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
<tags>stretch</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_K-9gFmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.HeapStatus" contributorURI="platform:/plugin/org.eclipse.platform" toBeRendered="false" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_K-9gF2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ProgressBar" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
<tags>Draggable</tags>
</children>
</trimBars>
<trimBars xmi:id="_K-9gGGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.trim.vertical1" contributorURI="platform:/plugin/org.eclipse.platform" side="Left"/>
<trimBars xmi:id="_K-9gGWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.trim.vertical2" contributorURI="platform:/plugin/org.eclipse.platform" side="Right"/>
</children>
<bindingTables xmi:id="_K-9gGmaLEe-_AJixeOhSjw" contributorURI="platform:/plugin/org.eclipse.platform" bindingContext="_K-9gG2aLEe-_AJixeOhSjw">
<bindings xmi:id="_K_mZR2aLEe-_AJixeOhSjw" keySequence="CTRL+1" command="_K_Who2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_mZXGaLEe-_AJixeOhSjw" keySequence="CTRL+6" command="_K_Why2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nAW2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+I" command="_K_V602aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnYWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+L" command="_K_YXOGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOdWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+D" command="_K_YXZGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1jmaLEe-_AJixeOhSjw" keySequence="CTRL+V" command="_K_VTjGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcnGaLEe-_AJixeOhSjw" keySequence="CTRL+A" command="_K_XIvWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcpmaLEe-_AJixeOhSjw" keySequence="CTRL+C" command="_K_XJHWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDtWaLEe-_AJixeOhSjw" keySequence="CTRL+X" command="_K_Wh6maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDtmaLEe-_AJixeOhSjw" keySequence="CTRL+Y" command="_K_XI6GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDuGaLEe-_AJixeOhSjw" keySequence="CTRL+Z" command="_K_Wh4maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqvWaLEe-_AJixeOhSjw" keySequence="ALT+PAGE_UP" command="_K_XI-WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqvmaLEe-_AJixeOhSjw" keySequence="ALT+PAGE_DOWN" command="_K_XwO2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqwWaLEe-_AJixeOhSjw" keySequence="SHIFT+INSERT" command="_K_VTjGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqx2aLEe-_AJixeOhSjw" keySequence="ALT+F11" command="_K_V6lWaLEe-_AJixeOhSjw">
<tags>platform:win32</tags>
</bindings>
<bindings xmi:id="_K_rR52aLEe-_AJixeOhSjw" keySequence="CTRL+F10" command="_K_VTq2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r402aLEe-_AJixeOhSjw" keySequence="CTRL+INSERT" command="_K_XJHWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r44WaLEe-_AJixeOhSjw" keySequence="CTRL+PAGE_UP" command="_K_YXFmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r44maLEe-_AJixeOhSjw" keySequence="CTRL+PAGE_DOWN" command="_K_Whq2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r45GaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+F1" command="_K_V6q2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r45WaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+F2" command="_K_XwIGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r45maLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+F3" command="_K_YXCWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r462aLEe-_AJixeOhSjw" keySequence="SHIFT+DEL" command="_K_Wh6maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf52aLEe-_AJixeOhSjw" keySequence="ALT+CTRL+SHIFT+F9" command="_K_XItWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sgBWaLEe-_AJixeOhSjw" keySequence="ALT+/" command="_K_YW02aLEe-_AJixeOhSjw">
<tags>locale:zh</tags>
</bindings>
</bindingTables>
<bindingTables xmi:id="_K_j9AGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.textEditorScope" bindingContext="_K_azEmaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_lLIGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+CR" command="_K_YXCGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_lyMmaLEe-_AJixeOhSjw" keySequence="CTRL+BS" command="_K_UseWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_mZRGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+Q" command="_K_V622aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nAXmaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+J" command="_K_V6zWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nAYmaLEe-_AJixeOhSjw" keySequence="CTRL++" command="_K_XwFWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnZWaLEe-_AJixeOhSjw" keySequence="CTRL+-" command="_K_WiHmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnbWaLEe-_AJixeOhSjw" keySequence="CTRL+/" command="_K_UshGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOcGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+C" command="_K_XwDWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOcmaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+C" command="_K_UshGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOfWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+F" command="_K_WhymaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOjGaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+J" command="_K_V66WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1gGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+A" command="_K_XvxGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1lWaLEe-_AJixeOhSjw" keySequence="CTRL+J" command="_K_VTsmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1mWaLEe-_AJixeOhSjw" keySequence="CTRL+L" command="_K_YW6WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pckGaLEe-_AJixeOhSjw" keySequence="CTRL+O" command="_K_XJJGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcl2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+/" command="_K_WiK2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcq2aLEe-_AJixeOhSjw" keySequence="CTRL+D" command="_K_VTwGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDq2aLEe-_AJixeOhSjw" keySequence="CTRL+=" command="_K_XwFWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDsWaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+/" command="_K_YXTGaLEe-_AJixeOhSjw">
<tags>locale:zh</tags>
</bindings>
<bindings xmi:id="_K_qDsmaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Y" command="_K_UscmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDu2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+DEL" command="_K_YW2maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDvGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+X" command="_K_XJJ2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDvWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+Y" command="_K_WiG2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqs2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+\" command="_K_Wh8maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqtmaLEe-_AJixeOhSjw" keySequence="CTRL+DEL" command="_K_Wh2maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qquGaLEe-_AJixeOhSjw" keySequence="ALT+ARROW_UP" command="_K_YXmGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qquWaLEe-_AJixeOhSjw" keySequence="ALT+ARROW_DOWN" command="_K_XwRGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqv2aLEe-_AJixeOhSjw" keySequence="SHIFT+END" command="_K_WiJWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqyGaLEe-_AJixeOhSjw" keySequence="SHIFT+HOME" command="_K_WiD2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqzmaLEe-_AJixeOhSjw" keySequence="END" command="_K_YXI2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqz2aLEe-_AJixeOhSjw" keySequence="INSERT" command="_K_Xv5GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qq1WaLEe-_AJixeOhSjw" keySequence="F2" command="_K_WhrWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRymaLEe-_AJixeOhSjw" keySequence="HOME" command="_K_YXSGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRzWaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+ARROW_UP" command="_K_YXd2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRzmaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+ARROW_DOWN" command="_K_XIxWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR0WaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+INSERT" command="_K_V6vWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR2maLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_K_WiJ2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR3GaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_K_V6w2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR6GaLEe-_AJixeOhSjw" keySequence="CTRL+F10" command="_K_YXA2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r40WaLEe-_AJixeOhSjw" keySequence="CTRL+END" command="_K_XwSGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r43GaLEe-_AJixeOhSjw" keySequence="CTRL+ARROW_UP" command="_K_V6qWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r43WaLEe-_AJixeOhSjw" keySequence="CTRL+ARROW_DOWN" command="_K_YXqmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r432aLEe-_AJixeOhSjw" keySequence="CTRL+ARROW_LEFT" command="_K_XJF2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r44GaLEe-_AJixeOhSjw" keySequence="CTRL+ARROW_RIGHT" command="_K_V62WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r442aLEe-_AJixeOhSjw" keySequence="CTRL+HOME" command="_K_VTi2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r452aLEe-_AJixeOhSjw" keySequence="CTRL+NUMPAD_MULTIPLY" command="_K_XwV2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r46GaLEe-_AJixeOhSjw" keySequence="CTRL+NUMPAD_ADD" command="_K_YXamaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r46WaLEe-_AJixeOhSjw" keySequence="CTRL+NUMPAD_SUBTRACT" command="_K_YXBmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r46maLEe-_AJixeOhSjw" keySequence="CTRL+NUMPAD_DIVIDE" command="_K_V6rmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf4WaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_K_XwXmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf5maLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_K_Xv52aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sgBmaLEe-_AJixeOhSjw" keySequence="SHIFT+CR" command="_K_YXR2aLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_lyMGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.contexts.window" bindingContext="_K-9gHGaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_lyMWaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+SHIFT+A" command="_K_XwRmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_lyM2aLEe-_AJixeOhSjw" keySequence="ALT+CTRL+SHIFT+T" command="_K_VTqmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_lyNGaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+SHIFT+L" command="_K_Xv2WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_lyNWaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+SHIFT+M" command="_K_YXWmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_mZQGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q O" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_mZQWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/>
</bindings>
<bindings xmi:id="_K_mZQmaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q P" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_mZQ2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.PackageExplorer"/>
</bindings>
<bindings xmi:id="_K_mZSGaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+B" command="_K_XwMmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_mZSWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+R" command="_K_YXr2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_mZSmaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q Q" command="_K_XwKmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_mZS2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+S" command="_K_XwCGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_mZTGaLEe-_AJixeOhSjw" keySequence="CTRL+3" command="_K_WhrGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_mZTWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+T" command="_K_Wh6WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_mZTmaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+T" command="_K_V6sWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_mZUGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q S" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_mZUWaLEe-_AJixeOhSjw" 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="_K_mZVGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q T" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_mZVWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.TypeHierarchy"/>
</bindings>
<bindings xmi:id="_K_mZVmaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+U" command="_K_V6u2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_mZWWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+V" command="_K_YXJ2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nAUGaLEe-_AJixeOhSjw" keySequence="CTRL+6" command="_K_XwiWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nAUWaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q V" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_nAUmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/>
</bindings>
<bindings xmi:id="_K_nAV2aLEe-_AJixeOhSjw" keySequence="ALT+CTRL+G" command="_K_XwHmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nAWGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+W" command="_K_Wh6GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nAWWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+H" command="_K_XJE2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nAXGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q H" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_nAXWaLEe-_AJixeOhSjw" 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="_K_nAX2aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q J" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_nAYGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.JavadocView"/>
</bindings>
<bindings xmi:id="_K_nAYWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+K" command="_K_V6p2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnYGaLEe-_AJixeOhSjw" keySequence="CTRL+," command="_K_VTkWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnY2aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q L" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_nnZGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/>
</bindings>
<bindings xmi:id="_K_nnZmaLEe-_AJixeOhSjw" keySequence="CTRL+-" command="_K_YXP2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnZ2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+N" command="_K_XJMmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnaGaLEe-_AJixeOhSjw" keySequence="CTRL+." command="_K_YXfGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnb2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+O" command="_K_YXXmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nncGaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+P" command="_K_V6mWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nncmaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+A" command="_K_XwOWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nndGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+B" command="_K_V6qGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nndmaLEe-_AJixeOhSjw" keySequence="CTRL+#" command="_K_VTrGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOd2aLEe-_AJixeOhSjw" keySequence="ALT+CTRL+T" command="_K_XJGGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOeGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+E" command="_K_V6t2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOgmaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+G" command="_K_YXhmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOhmaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+H" command="_K_VTpGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOiGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q X" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_oOiWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/>
</bindings>
<bindings xmi:id="_K_oOimaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q Y" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_oOi2aLEe-_AJixeOhSjw" 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="_K_oOjWaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q Z" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_oOjmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/>
</bindings>
<bindings xmi:id="_K_oOk2aLEe-_AJixeOhSjw" keySequence="CTRL+P" command="_K_YW_2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOlGaLEe-_AJixeOhSjw" keySequence="CTRL+Q" command="_K_YXD2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1iGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+C" command="_K_YW2WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1iWaLEe-_AJixeOhSjw" keySequence="CTRL+S" command="_K_WiH2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1jGaLEe-_AJixeOhSjw" keySequence="CTRL+U" command="_K_XI4maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1jWaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+F" command="_K_YXFGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1kGaLEe-_AJixeOhSjw" keySequence="CTRL+W" command="_K_XI82aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1kWaLEe-_AJixeOhSjw" keySequence="CTRL+H" command="_K_YW0maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1lmaLEe-_AJixeOhSjw" keySequence="CTRL+K" command="_K_XwNGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1mmaLEe-_AJixeOhSjw" keySequence="CTRL+M" command="_K_XwiGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1nWaLEe-_AJixeOhSjw" keySequence="CTRL+N" command="_K_YXjGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcmmaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+?" command="_K_Whv2aLEe-_AJixeOhSjw">
<tags>locale:zh</tags>
</bindings>
<bindings xmi:id="_K_pcm2aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+P" command="_K_XwI2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcnmaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+R" command="_K_XI7WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcn2aLEe-_AJixeOhSjw" keySequence="CTRL+B" command="_K_VTlGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcoGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q B" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_pcoWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/>
</bindings>
<bindings xmi:id="_K_pcp2aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+S" command="_K_XJCGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcqGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+T" command="_K_XvxmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcqWaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q C" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_pcqmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/>
</bindings>
<bindings xmi:id="_K_pcrGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Q D" command="_K_XwKmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_pcrWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.SourceView"/>
</bindings>
<bindings xmi:id="_K_pcrmaLEe-_AJixeOhSjw" keySequence="CTRL+E" command="_K_Wh2GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcsWaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+V" command="_K_WiJmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDoGaLEe-_AJixeOhSjw" keySequence="CTRL+F" command="_K_VTyGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDo2aLEe-_AJixeOhSjw" keySequence="CTRL+G" command="_K_UsemaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDpWaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+W" command="_K_YXdmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDpmaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+I" command="_K_VTrWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDp2aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+J" command="_K_Wh1GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDqWaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+L" command="_K_V67maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDqmaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+M" command="_K_YXa2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDrGaLEe-_AJixeOhSjw" keySequence="CTRL+=" command="_K_WiAmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDrWaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+N" command="_K_Wh42aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDs2aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Z" command="_K_XJDWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDuWaLEe-_AJixeOhSjw" keySequence="CTRL+_" command="_K_Whw2aLEe-_AJixeOhSjw">
<parameters xmi:id="_K_qDumaLEe-_AJixeOhSjw" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="true"/>
</bindings>
<bindings xmi:id="_K_qqsGaLEe-_AJixeOhSjw" keySequence="CTRL+{" command="_K_Whw2aLEe-_AJixeOhSjw">
<parameters xmi:id="_K_qqsWaLEe-_AJixeOhSjw" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="false"/>
</bindings>
<bindings xmi:id="_K_qqumaLEe-_AJixeOhSjw" keySequence="ALT+ARROW_LEFT" command="_K_VTr2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqvGaLEe-_AJixeOhSjw" keySequence="ALT+ARROW_RIGHT" command="_K_Wh_maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqw2aLEe-_AJixeOhSjw" keySequence="SHIFT+F2" command="_K_Xv-GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqxWaLEe-_AJixeOhSjw" keySequence="SHIFT+F5" command="_K_XIy2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqxmaLEe-_AJixeOhSjw" keySequence="ALT+F7" command="_K_Xvy2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqyWaLEe-_AJixeOhSjw" keySequence="ALT+F5" command="_K_XItGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqzGaLEe-_AJixeOhSjw" keySequence="F11" command="_K_YXV2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqzWaLEe-_AJixeOhSjw" keySequence="F12" command="_K_YW1maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qq1GaLEe-_AJixeOhSjw" keySequence="F2" command="_K_VTk2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qq12aLEe-_AJixeOhSjw" keySequence="F3" command="_K_V67GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRw2aLEe-_AJixeOhSjw" keySequence="F4" command="_K_VTm2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRyGaLEe-_AJixeOhSjw" keySequence="F5" command="_K_WiCGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRy2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+F7" command="_K_YXW2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRzGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+F8" command="_K_WhwmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRz2aLEe-_AJixeOhSjw" keySequence="ALT+CTRL+ARROW_LEFT" command="_K_YXD2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR0GaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+ARROW_RIGHT" command="_K_V6sGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR0maLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+F4" command="_K_Wh6GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR02aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+F6" command="_K_XwEmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR22aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+X J" command="_K_XwPWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR3WaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+X M" command="_K_XIwWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR3maLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+X A" command="_K_VTkGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR32aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+X B" command="_K_YXqWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR4GaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+X E" command="_K_XwHWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR4WaLEe-_AJixeOhSjw" keySequence="CTRL+F7" command="_K_XJHmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR4maLEe-_AJixeOhSjw" keySequence="CTRL+F8" command="_K_WhpmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR62aLEe-_AJixeOhSjw" keySequence="CTRL+F11" command="_K_YXJWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r412aLEe-_AJixeOhSjw" keySequence="CTRL+F4" command="_K_XI82aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r42WaLEe-_AJixeOhSjw" keySequence="CTRL+F6" command="_K_V6mmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r42maLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+F7" command="_K_XwSmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r422aLEe-_AJixeOhSjw" keySequence="ALT+CTRL+X G" command="_K_YXU2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r47GaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+SHIFT+B D" command="_K_YXZ2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r47WaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+SHIFT+B F" command="_K_V612aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r47maLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+X O" command="_K_Xv-WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r48WaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+X P" command="_K_YXcGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf4GaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_K_XwB2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf4maLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+X Q" command="_K_V60GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf42aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+X R" command="_K_XI52aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf5GaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+X T" command="_K_XIu2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf5WaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_K_WhxWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf6GaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+SHIFT+B R" command="_K_Xv5WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf6WaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+SHIFT+B S" command="_K_Xwd2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf6maLEe-_AJixeOhSjw" keySequence="DEL" command="_K_V6n2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf9GaLEe-_AJixeOhSjw" keySequence="ALT+?" command="_K_Whv2aLEe-_AJixeOhSjw">
<tags>locale:zh</tags>
</bindings>
<bindings xmi:id="_K_sgBGaLEe-_AJixeOhSjw" keySequence="ALT+-" command="_K_XJMGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sgCWaLEe-_AJixeOhSjw" keySequence="ALT+CR" command="_K_XweWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sgCmaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+D B" command="_K_YXYWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_tG8GaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+D E" command="_K_YXnWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_tG8WaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+D A" command="_K_YW7GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_tG8maLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+D R" command="_K_XI6WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_tG82aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+D T" command="_K_UshmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_tG9GaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+D J" command="_K_XwY2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_tG9WaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+D O" command="_K_XJI2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_tG9maLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+D P" command="_K_YW-2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_tG92aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+D Q" command="_K_XI0WaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_lyNmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.javaEditorScope" bindingContext="_K_azGmaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_lyN2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+P" command="_K_XwSWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nAU2aLEe-_AJixeOhSjw" keySequence="CTRL+7" command="_K_XJNWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnYmaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+M" command="_K_WhrmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nna2aLEe-_AJixeOhSjw" keySequence="CTRL+/" command="_K_XJNWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nneGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+C" command="_K_XJNWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOfGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+F" command="_K_YXRmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1gWaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+B" command="_K_YXnGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1i2aLEe-_AJixeOhSjw" keySequence="CTRL+T" command="_K_Xvw2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1kmaLEe-_AJixeOhSjw" keySequence="CTRL+I" command="_K_Wh_GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1oGaLEe-_AJixeOhSjw" keySequence="CTRL+O" command="_K_XIvmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pclmaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+/" command="_K_XI42aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcr2aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+U" command="_K_XwaWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDoWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+'" command="_K_Xv02aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDr2aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+O" command="_K_Wh3WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqsmaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+\" command="_K_VTwWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR1GaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+ARROW_UP" command="_K_XI9maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR12aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_K_XIv2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR42aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+ARROW_UP" command="_K_XI0GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR5WaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+ARROW_DOWN" command="_K_V6qmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR6WaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+ARROW_LEFT" command="_K_WiBmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR7GaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_K_VTvGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r41WaLEe-_AJixeOhSjw" keySequence="CTRL+F3" command="_K_YXeWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf8WaLEe-_AJixeOhSjw" keySequence="CTRL+2 F" command="_K_YXaWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf_maLEe-_AJixeOhSjw" keySequence="CTRL+2 R" command="_K_XwfGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sgAGaLEe-_AJixeOhSjw" keySequence="CTRL+2 T" command="_K_XJNGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sgAWaLEe-_AJixeOhSjw" keySequence="CTRL+2 L" command="_K_VTtGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sgA2aLEe-_AJixeOhSjw" keySequence="CTRL+2 M" command="_K_WiC2aLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_lyOGaLEe-_AJixeOhSjw" elementId="org.eclipse.core.runtime.xml" bindingContext="_K_azHmaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_lyOWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+P" command="_K_YW12aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOdmaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+D" command="_K_XI4WaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_lyOmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" bindingContext="_K_azG2aLEe-_AJixeOhSjw">
<bindings xmi:id="_K_lyO2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+P" command="_K_XvxWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnc2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+A" command="_K_YXq2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOcWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+C" command="_K_YXRGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOgGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+F" command="_K_YXh2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOkmaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+>" command="_K_YW7WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1k2aLEe-_AJixeOhSjw" keySequence="CTRL+I" command="_K_YXAmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pclGaLEe-_AJixeOhSjw" keySequence="CTRL+O" command="_K_Xv0maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcmGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+/" command="_K_XJL2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqtGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+\" command="_K_XwH2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRwWaLEe-_AJixeOhSjw" keySequence="F3" command="_K_XvwmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR1WaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+ARROW_UP" command="_K_V6y2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR2GaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_K_XI12aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR5GaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+ARROW_UP" command="_K_XwQGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR5maLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+ARROW_DOWN" command="_K_XwU2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR6maLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+ARROW_LEFT" command="_K_VTomaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r40GaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_K_Xv-2aLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_lyPGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" bindingContext="_K_azE2aLEe-_AJixeOhSjw">
<bindings xmi:id="_K_lyPWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+P" command="_K_XwCmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_mZT2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+T" command="_K_XI2WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nAVmaLEe-_AJixeOhSjw" keySequence="CTRL+7" command="_K_Xv4GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnbmaLEe-_AJixeOhSjw" keySequence="CTRL+/" command="_K_Xv4GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOc2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+C" command="_K_Xv4GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOgWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+F" command="_K_VTuGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1lGaLEe-_AJixeOhSjw" keySequence="CTRL+I" command="_K_WiKGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pclWaLEe-_AJixeOhSjw" keySequence="CTRL+O" command="_K_UsmGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcmWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+/" command="_K_XI1maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcsGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+U" command="_K_Wh52aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDsGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+O" command="_K_WiEWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqtWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+\" command="_K_V6nWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR1maLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+ARROW_UP" command="_K_YXsmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rR2WaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_K_V6vGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r41maLEe-_AJixeOhSjw" keySequence="CTRL+F3" command="_K_XJImaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf8maLEe-_AJixeOhSjw" keySequence="CTRL+2 F" command="_K_WiFmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf_2aLEe-_AJixeOhSjw" keySequence="CTRL+2 R" command="_K_WhsWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sgAmaLEe-_AJixeOhSjw" keySequence="CTRL+2 L" command="_K_YXe2aLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_mZRWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.classFileEditorScope" bindingContext="_K_azGGaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_mZRmaLEe-_AJixeOhSjw" keySequence="CTRL+1" command="_K_YXhGaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_mZUmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.serverViewScope" bindingContext="_K_azLmaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_mZU2aLEe-_AJixeOhSjw" keySequence="ALT+CTRL+D" command="_K_XwOmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nncWaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+P" command="_K_XwTmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nndWaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+R" command="_K_YXfWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOdGaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+S" command="_K_V65GaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_mZV2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" bindingContext="_K_azPGaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_mZWGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+U" command="_K_V62GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nAWmaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+H" command="_K_YXrmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOhWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+G" command="_K_XvyWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOh2aLEe-_AJixeOhSjw" keySequence="ALT+CTRL+H" command="_K_Xwf2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDpGaLEe-_AJixeOhSjw" keySequence="CTRL+G" command="_K_XwN2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDqGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+J" command="_K_Xv9GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDtGaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+Z" command="_K_XIsmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqxGaLEe-_AJixeOhSjw" keySequence="SHIFT+F2" command="_K_YW4WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRwmaLEe-_AJixeOhSjw" keySequence="F3" command="_K_XwTWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRxGaLEe-_AJixeOhSjw" keySequence="F4" command="_K_XIymaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_mZWmaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.EditContext" bindingContext="_K_azEGaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_mZW2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+V" command="_K_WiFGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnemaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+C" command="_K_XwbmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqt2aLEe-_AJixeOhSjw" keySequence="ALT+ARROW_UP" command="_K_UseGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqu2aLEe-_AJixeOhSjw" keySequence="ALT+ARROW_RIGHT" command="_K_YXVmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqwGaLEe-_AJixeOhSjw" keySequence="SHIFT+INSERT" command="_K_WiFGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r40maLEe-_AJixeOhSjw" keySequence="CTRL+INSERT" command="_K_XwbmaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_nAVGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.propertiesEditorScope" bindingContext="_K_azQGaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_nAVWaLEe-_AJixeOhSjw" keySequence="CTRL+7" command="_K_XJNWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnbGaLEe-_AJixeOhSjw" keySequence="CTRL+/" command="_K_XJNWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nneWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+C" command="_K_XJNWaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_nnaWaLEe-_AJixeOhSjw" elementId="org.dadacoalition.yedit.yeditScope" bindingContext="_K_azPWaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_nnamaLEe-_AJixeOhSjw" keySequence="CTRL+/" command="_K_UskmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_nnd2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+C" command="_K_UskmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOeWaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+F" command="_K_YXO2aLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_oOemaLEe-_AJixeOhSjw" elementId="org.eclipse.ant.ui.AntEditorScope" bindingContext="_K_azJGaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_oOe2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+F" command="_K_YXRmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pcnWaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+R" command="_K_VTmmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDrmaLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+O" command="_K_UsgmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqwmaLEe-_AJixeOhSjw" keySequence="SHIFT+F2" command="_K_Xv1WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qq1maLEe-_AJixeOhSjw" keySequence="F3" command="_K_UsiWaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_oOfmaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.pdeEditorContext" bindingContext="_K_azLGaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_oOf2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+F" command="_K_VTumaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_pck2aLEe-_AJixeOhSjw" keySequence="CTRL+O" command="_K_V6lGaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_oOg2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.genericeditor.genericEditorContext" bindingContext="_K_azL2aLEe-_AJixeOhSjw">
<bindings xmi:id="_K_oOhGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+G" command="_K_YXImaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRwGaLEe-_AJixeOhSjw" keySequence="F3" command="_K_YXEGaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_oOj2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_K_azF2aLEe-_AJixeOhSjw">
<bindings xmi:id="_K_oOkGaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+M" command="_K_XIt2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_oOkWaLEe-_AJixeOhSjw" keySequence="ALT+CTRL+N" command="_K_YXbGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1imaLEe-_AJixeOhSjw" keySequence="CTRL+T" command="_K_WhsmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1j2aLEe-_AJixeOhSjw" keySequence="CTRL+W" command="_K_Xv7GaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1nGaLEe-_AJixeOhSjw" keySequence="CTRL+N" command="_K_XwGGaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_o1gmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" bindingContext="_K_azGWaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_o1g2aLEe-_AJixeOhSjw" keySequence="ALT+SHIFT+B" command="_K_YXnGaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_o1hGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.debugging" bindingContext="_K_azMmaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_o1hWaLEe-_AJixeOhSjw" keySequence="CTRL+R" command="_K_XJIWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqymaLEe-_AJixeOhSjw" keySequence="F7" command="_K_YXfmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qqy2aLEe-_AJixeOhSjw" keySequence="F8" command="_K_Xv3maLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRx2aLEe-_AJixeOhSjw" keySequence="F5" command="_K_VToGaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_rRyWaLEe-_AJixeOhSjw" keySequence="F6" command="_K_WiKmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r41GaLEe-_AJixeOhSjw" keySequence="CTRL+F2" command="_K_YW3WaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r42GaLEe-_AJixeOhSjw" keySequence="CTRL+F5" command="_K_YXUmaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_o1hmaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.console" bindingContext="_K_azKWaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_o1h2aLEe-_AJixeOhSjw" keySequence="CTRL+R" command="_K_XvzWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDt2aLEe-_AJixeOhSjw" keySequence="CTRL+Z" command="_K_YXdGaLEe-_AJixeOhSjw">
<tags>platform:win32</tags>
</bindings>
</bindingTables>
<bindingTables xmi:id="_K_o1l2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_K_azM2aLEe-_AJixeOhSjw">
<bindings xmi:id="_K_o1mGaLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+," command="_K_YXE2aLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_o1m2aLEe-_AJixeOhSjw" keySequence="CTRL+SHIFT+." command="_K_XwhWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_qDomaLEe-_AJixeOhSjw" keySequence="CTRL+G" command="_K_XwhmaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_o1nmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.DiffViewer" bindingContext="_K_azFGaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_o1n2aLEe-_AJixeOhSjw" keySequence="CTRL+O" command="_K_XIz2aLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_pckWaLEe-_AJixeOhSjw" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" bindingContext="_K_azO2aLEe-_AJixeOhSjw">
<bindings xmi:id="_K_pckmaLEe-_AJixeOhSjw" keySequence="CTRL+O" command="_K_VThmaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_pcomaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_K_azQWaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_pco2aLEe-_AJixeOhSjw" keySequence="CTRL+C" command="_K_WhtmaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_r43maLEe-_AJixeOhSjw" keySequence="CTRL+ARROW_LEFT" command="_K_VTvWaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_pcpGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_K_azNWaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_pcpWaLEe-_AJixeOhSjw" keySequence="CTRL+C" command="_K_V6m2aLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_qq0GaLEe-_AJixeOhSjw" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" bindingContext="_K_azOmaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_qq0WaLEe-_AJixeOhSjw" keySequence="F1" command="_K_Ush2aLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_qq0maLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesView.SingleRepository" bindingContext="_K_azQmaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_qq02aLEe-_AJixeOhSjw" keySequence="F2" command="_K_V6omaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_rRxWaLEe-_AJixeOhSjw" elementId="org.eclipse.buildship.ui.contexts.taskview" bindingContext="_K_azPmaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_rRxmaLEe-_AJixeOhSjw" keySequence="F5" command="_K_YXQ2aLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_r472aLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.TerminalContext" bindingContext="_K_azNmaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_r48GaLEe-_AJixeOhSjw" keySequence="ALT+Y" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf62aLEe-_AJixeOhSjw" keySequence="ALT+A" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf7GaLEe-_AJixeOhSjw" keySequence="ALT+B" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf7WaLEe-_AJixeOhSjw" keySequence="ALT+C" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf7maLEe-_AJixeOhSjw" keySequence="ALT+D" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf72aLEe-_AJixeOhSjw" keySequence="ALT+E" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf8GaLEe-_AJixeOhSjw" keySequence="ALT+F" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf82aLEe-_AJixeOhSjw" keySequence="ALT+G" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf9WaLEe-_AJixeOhSjw" keySequence="ALT+P" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf9maLEe-_AJixeOhSjw" keySequence="ALT+R" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf92aLEe-_AJixeOhSjw" keySequence="ALT+S" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf-GaLEe-_AJixeOhSjw" keySequence="ALT+T" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf-WaLEe-_AJixeOhSjw" keySequence="ALT+V" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf-maLEe-_AJixeOhSjw" keySequence="ALT+W" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf-2aLEe-_AJixeOhSjw" keySequence="ALT+H" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf_GaLEe-_AJixeOhSjw" keySequence="ALT+L" command="_K_XJLWaLEe-_AJixeOhSjw"/>
<bindings xmi:id="_K_sf_WaLEe-_AJixeOhSjw" keySequence="ALT+N" command="_K_XJLWaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_K_sgB2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_K_azEWaLEe-_AJixeOhSjw">
<bindings xmi:id="_K_sgCGaLEe-_AJixeOhSjw" keySequence="ALT+CR" command="_K_XJEmaLEe-_AJixeOhSjw"/>
</bindingTables>
<bindingTables xmi:id="_LR9UkWaLEe-_AJixeOhSjw" bindingContext="_LR9UkGaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR97oWaLEe-_AJixeOhSjw" bindingContext="_LR97oGaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR97o2aLEe-_AJixeOhSjw" bindingContext="_LR97omaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR97pWaLEe-_AJixeOhSjw" bindingContext="_LR97pGaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR97p2aLEe-_AJixeOhSjw" bindingContext="_LR97pmaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR-isWaLEe-_AJixeOhSjw" bindingContext="_LR-isGaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR-is2aLEe-_AJixeOhSjw" bindingContext="_LR-ismaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR-itWaLEe-_AJixeOhSjw" bindingContext="_LR-itGaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR-it2aLEe-_AJixeOhSjw" bindingContext="_LR-itmaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR-iuWaLEe-_AJixeOhSjw" bindingContext="_LR-iuGaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR-iu2aLEe-_AJixeOhSjw" bindingContext="_LR-iumaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR-ivWaLEe-_AJixeOhSjw" bindingContext="_LR-ivGaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_JwGaLEe-_AJixeOhSjw" bindingContext="_LR-ivmaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_JwmaLEe-_AJixeOhSjw" bindingContext="_LR_JwWaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_JxGaLEe-_AJixeOhSjw" bindingContext="_LR_Jw2aLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_JxmaLEe-_AJixeOhSjw" bindingContext="_LR_JxWaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_JyGaLEe-_AJixeOhSjw" bindingContext="_LR_Jx2aLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_JymaLEe-_AJixeOhSjw" bindingContext="_LR_JyWaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_w0GaLEe-_AJixeOhSjw" bindingContext="_LR_Jy2aLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_w0maLEe-_AJixeOhSjw" bindingContext="_LR_w0WaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_w1GaLEe-_AJixeOhSjw" bindingContext="_LR_w02aLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_w1maLEe-_AJixeOhSjw" bindingContext="_LR_w1WaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_w2GaLEe-_AJixeOhSjw" bindingContext="_LR_w12aLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_w2maLEe-_AJixeOhSjw" bindingContext="_LR_w2WaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_w3GaLEe-_AJixeOhSjw" bindingContext="_LR_w22aLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_w3maLEe-_AJixeOhSjw" bindingContext="_LR_w3WaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LR_w4GaLEe-_AJixeOhSjw" bindingContext="_LR_w32aLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LSAX4WaLEe-_AJixeOhSjw" bindingContext="_LSAX4GaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LSAX42aLEe-_AJixeOhSjw" bindingContext="_LSAX4maLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LSAX5WaLEe-_AJixeOhSjw" bindingContext="_LSAX5GaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LSAX52aLEe-_AJixeOhSjw" bindingContext="_LSAX5maLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LSAX6WaLEe-_AJixeOhSjw" bindingContext="_LSAX6GaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LSA-8WaLEe-_AJixeOhSjw" bindingContext="_LSA-8GaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LSA-82aLEe-_AJixeOhSjw" bindingContext="_LSA-8maLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LSA-9WaLEe-_AJixeOhSjw" bindingContext="_LSA-9GaLEe-_AJixeOhSjw"/>
<bindingTables xmi:id="_LSA-92aLEe-_AJixeOhSjw" bindingContext="_LSA-9maLEe-_AJixeOhSjw"/>
<rootContext xmi:id="_K-9gG2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.contexts.dialogAndWindow" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs and Windows" description="Either a dialog or a window is open">
<children xmi:id="_K-9gHGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.platform" name="In Windows" description="A window is open">
<children xmi:id="_K-9gHWaLEe-_AJixeOhSjw" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.platform" name="%bindingcontext.name.bindingView"/>
<children xmi:id="_K_azEGaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.EditContext" name="Terminal Control in Focus" description="Show modified keyboard shortcuts in context menu"/>
<children xmi:id="_K_azEWaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/>
<children xmi:id="_K_azEmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context">
<children xmi:id="_K_azE2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" name="Editing JavaScript Source" description="Editing JavaScript Source Context">
<children xmi:id="_K_azPGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" name="JavaScript View" description="JavaScript View Context"/>
</children>
<children xmi:id="_K_azFGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.DiffViewer" name="In Diff Viewer"/>
<children xmi:id="_K_azGGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.classFileEditorScope" name="Browsing attached Java Source" description="Browsing attached Java Source Context"/>
<children xmi:id="_K_azGmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.javaEditorScope" name="Editing Java Source" description="Editing Java Source Context"/>
<children xmi:id="_K_azG2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors">
<children xmi:id="_K_azHGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.cleanup" name="XML Source Cleanup" description="XML Source Cleanup"/>
<children xmi:id="_K_azHWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.comments" name="Source Comments in Structured Text Editors" description="Source Comments in Structured Text Editors"/>
<children xmi:id="_K_azHmaLEe-_AJixeOhSjw" elementId="org.eclipse.core.runtime.xml" name="Editing XML Source" description="Editing XML Source"/>
<children xmi:id="_K_azH2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.occurrences" name="XML Source Occurrences" description="XML Source Occurrences"/>
<children xmi:id="_K_azIGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.grammar" name="XML Source Grammar" description="XML Source Grammar"/>
<children xmi:id="_K_azIWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.comments" name="XML Source Comments" description="XML Source Comments"/>
<children xmi:id="_K_azI2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.expand" name="XML Source Expand/Collapse" description="XML Source Expand/Collapse"/>
<children xmi:id="_K_azJWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.hideFormat" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"/>
<children xmi:id="_K_azJmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.selection" name="XML Source Selection" description="XML Source Selection"/>
<children xmi:id="_K_azK2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.navigation" name="XML Source Navigation" description="XML Source Navigation"/>
<children xmi:id="_K_azMWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.json.core.jsonsource" name="%scope.structured.text.editor.json.name" description="%scope.structured.text.editor.json.description"/>
<children xmi:id="_K_azN2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.css.core.csssource" name="Editing CSS Source" description="Editing CSS Source"/>
<children xmi:id="_K_azOWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.html.core.htmlsource" name="Editing HTML Source" description="Editing HTML Source"/>
<children xmi:id="_K_azP2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.dependencies" name="XML Source Dependencies" description="XML Source Dependencies"/>
<children xmi:id="_K_azQ2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.html.occurrences" name="HTML Source Occurrences" description="HTML Source Occurrences"/>
</children>
<children xmi:id="_K_azJGaLEe-_AJixeOhSjw" elementId="org.eclipse.ant.ui.AntEditorScope" name="Editing Ant Buildfiles" description="Editing Ant Buildfiles Context"/>
<children xmi:id="_K_azLGaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.pdeEditorContext" name="PDE editor" description="The context used by PDE editors"/>
<children xmi:id="_K_azL2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.genericeditor.genericEditorContext" name="in Generic Code Editor" description="When editing in the Generic Code Editor"/>
<children xmi:id="_K_azOGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xsd.ui.text.editor.context" name="Editing XSD context"/>
<children xmi:id="_K_azOmaLEe-_AJixeOhSjw" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context">
<children xmi:id="_K_azO2aLEe-_AJixeOhSjw" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context"/>
</children>
<children xmi:id="_K_azPWaLEe-_AJixeOhSjw" elementId="org.dadacoalition.yedit.yeditScope" name="YEdit editor context"/>
<children xmi:id="_K_azQGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.propertiesEditorScope" name="Editing Properties Files" description="Editing Properties Files Context"/>
</children>
<children xmi:id="_K_azFWaLEe-_AJixeOhSjw" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/>
<children xmi:id="_K_azF2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In memory view"/>
<children xmi:id="_K_azKWaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O console"/>
<children xmi:id="_K_azKmaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" name="In Terminal View" description="Show modified keyboard shortcuts in context menu"/>
<children xmi:id="_K_azLWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/>
<children xmi:id="_K_azLmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.serverViewScope" name="In Servers View" description="In Servers View"/>
<children xmi:id="_K_azMmaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging programs">
<children xmi:id="_K_azM2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/>
<children xmi:id="_K_azNGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.debugging" name="Debugging Java" description="Debugging Java programs"/>
</children>
<children xmi:id="_K_azNWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/>
<children xmi:id="_K_azNmaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.TerminalContext" name="Terminal Typing Connected" description="Override ALT+x menu access keys while typing into the Terminal"/>
<children xmi:id="_K_azPmaLEe-_AJixeOhSjw" elementId="org.eclipse.buildship.ui.contexts.taskview" name="In Gradle Tasks View" description="This context is activated when the Gradle Tasks view is in focus"/>
<children xmi:id="_K_azQWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View">
<children xmi:id="_K_azQmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesView.SingleRepository" name="In Git Repositories View"/>
</children>
</children>
<children xmi:id="_K-9gHmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs" description="A dialog is open"/>
</rootContext>
<rootContext xmi:id="_K_azFmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/>
<rootContext xmi:id="_K_azGWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" name="Editor Breadcrumb Navigation" description="Editor Breadcrumb Navigation Context"/>
<rootContext xmi:id="_K_azImaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xsd.ui.editor.sourceView" name="XSD Editor Source View" description="XSD Editor Source View"/>
<rootContext xmi:id="_K_azJ2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xsd.ui.editor.designView" name="XSD Editor Design View" description="XSD Editor Design View"/>
<rootContext xmi:id="_K_azKGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/>
<rootContext xmi:id="_K_azMGaLEe-_AJixeOhSjw" elementId="dev.dietermai.projectselect.context" name="Project Select Context" description="The context of the project select dialog"/>
<rootContext xmi:id="_LR9UkGaLEe-_AJixeOhSjw" elementId="org.eclipse.ant.ui.actionSet.presentation" name="Auto::org.eclipse.ant.ui.actionSet.presentation"/>
<rootContext xmi:id="_LR97oGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.breakpointActionSet" name="Auto::org.eclipse.debug.ui.breakpointActionSet"/>
<rootContext xmi:id="_LR97omaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.debugActionSet" name="Auto::org.eclipse.debug.ui.debugActionSet"/>
<rootContext xmi:id="_LR97pGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.launchActionSet" name="Auto::org.eclipse.debug.ui.launchActionSet"/>
<rootContext xmi:id="_LR97pmaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.profileActionSet" name="Auto::org.eclipse.debug.ui.profileActionSet"/>
<rootContext xmi:id="_LR-isGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.gitaction" name="Auto::org.eclipse.egit.ui.gitaction"/>
<rootContext xmi:id="_LR-ismaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.navigation" name="Auto::org.eclipse.egit.ui.navigation"/>
<rootContext xmi:id="_LR-itGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.SearchActionSet" name="Auto::org.eclipse.egit.ui.SearchActionSet"/>
<rootContext xmi:id="_LR-itmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.JDTDebugActionSet" name="Auto::org.eclipse.jdt.debug.ui.JDTDebugActionSet"/>
<rootContext xmi:id="_LR-iuGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.junit.JUnitActionSet" name="Auto::org.eclipse.jdt.junit.JUnitActionSet"/>
<rootContext xmi:id="_LR-iumaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.jdt.ui.text.java.actionSet.presentation"/>
<rootContext xmi:id="_LR-ivGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.jdt.ui.JavaElementCreationActionSet"/>
<rootContext xmi:id="_LR-ivmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.JavaActionSet" name="Auto::org.eclipse.jdt.ui.JavaActionSet"/>
<rootContext xmi:id="_LR_JwWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.A_OpenActionSet" name="Auto::org.eclipse.jdt.ui.A_OpenActionSet"/>
<rootContext xmi:id="_LR_Jw2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.CodingActionSet" name="Auto::org.eclipse.jdt.ui.CodingActionSet"/>
<rootContext xmi:id="_LR_JxWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.SearchActionSet" name="Auto::org.eclipse.jdt.ui.SearchActionSet"/>
<rootContext xmi:id="_LR_Jx2aLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.launchActionSet" name="Auto::org.eclipse.linuxtools.docker.launchActionSet"/>
<rootContext xmi:id="_LR_JyWaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.SearchActionSet" name="Auto::org.eclipse.pde.ui.SearchActionSet"/>
<rootContext xmi:id="_LR_Jy2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.cheatsheets.actionSet" name="Auto::org.eclipse.ui.cheatsheets.actionSet"/>
<rootContext xmi:id="_LR_w0WaLEe-_AJixeOhSjw" elementId="org.eclipse.search.searchActionSet" name="Auto::org.eclipse.search.searchActionSet"/>
<rootContext xmi:id="_LR_w02aLEe-_AJixeOhSjw" elementId="org.eclipse.team.ui.actionSet" name="Auto::org.eclipse.team.ui.actionSet"/>
<rootContext xmi:id="_LR_w1WaLEe-_AJixeOhSjw" elementId="org.eclipse.text.quicksearch.actionSet" name="Auto::org.eclipse.text.quicksearch.actionSet"/>
<rootContext xmi:id="_LR_w12aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.actionSet.annotationNavigation" name="Auto::org.eclipse.ui.edit.text.actionSet.annotationNavigation"/>
<rootContext xmi:id="_LR_w2WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.actionSet.navigation" name="Auto::org.eclipse.ui.edit.text.actionSet.navigation"/>
<rootContext xmi:id="_LR_w22aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo" name="Auto::org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo"/>
<rootContext xmi:id="_LR_w3WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.externaltools.ExternalToolsSet" name="Auto::org.eclipse.ui.externaltools.ExternalToolsSet"/>
<rootContext xmi:id="_LR_w32aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.NavigateActionSet" name="Auto::org.eclipse.ui.NavigateActionSet"/>
<rootContext xmi:id="_LSAX4GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.actionSet.keyBindings" name="Auto::org.eclipse.ui.actionSet.keyBindings"/>
<rootContext xmi:id="_LSAX4maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.WorkingSetModificationActionSet" name="Auto::org.eclipse.ui.WorkingSetModificationActionSet"/>
<rootContext xmi:id="_LSAX5GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.WorkingSetActionSet" name="Auto::org.eclipse.ui.WorkingSetActionSet"/>
<rootContext xmi:id="_LSAX5maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.actionSet.openFiles" name="Auto::org.eclipse.ui.actionSet.openFiles"/>
<rootContext xmi:id="_LSAX6GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.actionSet.presentation" name="Auto::org.eclipse.ui.edit.text.actionSet.presentation"/>
<rootContext xmi:id="_LSA-8GaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.server.ui.new.actionSet" name="Auto::org.eclipse.wst.server.ui.new.actionSet"/>
<rootContext xmi:id="_LSA-8maLEe-_AJixeOhSjw" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet" name="Auto::org.eclipse.wst.server.ui.internal.webbrowser.actionSet"/>
<rootContext xmi:id="_LSA-9GaLEe-_AJixeOhSjw" elementId="org.springsource.ide.eclipse.commons.launch.actionSet" name="Auto::org.springsource.ide.eclipse.commons.launch.actionSet"/>
<rootContext xmi:id="_LSA-9maLEe-_AJixeOhSjw" elementId="org.eclipse.wst.web.ui.wizardsActionSet" name="Auto::org.eclipse.wst.web.ui.wizardsActionSet"/>
<descriptors xmi:id="_LD4cUGaLEe-_AJixeOhSjw" 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>
<tags>removeOnHide</tags>
</descriptors>
<descriptors xmi:id="_LK4cMGaLEe-_AJixeOhSjw" elementId="org.eclipse.ant.ui.views.AntView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.png" tooltip="" category="Ant" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ant.internal.ui.views.AntView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ant.ui"/>
<tags>View</tags>
<tags>categoryTag:Ant</tags>
</descriptors>
<descriptors xmi:id="_LK5DQGaLEe-_AJixeOhSjw" elementId="org.eclipse.buildship.ui.views.taskview" label="Gradle Tasks" iconURI="platform:/plugin/org.eclipse.buildship.ui/icons/full/eview16/tasks_view.png" tooltip="" category="Gradle" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.buildship.ui.internal.view.task.TaskView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.buildship.ui"/>
<tags>View</tags>
<tags>categoryTag:Gradle</tags>
</descriptors>
<descriptors xmi:id="_LK5qUGaLEe-_AJixeOhSjw" elementId="org.eclipse.buildship.ui.views.executionview" label="Gradle Executions" iconURI="platform:/plugin/org.eclipse.buildship.ui/icons/full/eview16/executions_view.png" tooltip="" category="Gradle" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.buildship.ui.internal.view.execution.ExecutionsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.buildship.ui"/>
<tags>View</tags>
<tags>categoryTag:Gradle</tags>
</descriptors>
<descriptors xmi:id="_LK5qUWaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.DebugView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_view.png" tooltip="" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.launch.LaunchView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_LK6RYGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.BreakpointView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/breakpoint_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.breakpoints.BreakpointsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_LK64cGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.VariableView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/variable_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.variables.VariablesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_LK7fgGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.ExpressionView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/watchlist_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.expression.ExpressionView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_LK8GkGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.RegisterView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/register_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.registers.RegistersView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_LK8GkWaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.ModuleView" label="Modules" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/module_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.modules.ModulesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_LK8toGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.MemoryView" label="Memory" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/memory_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.memory.MemoryView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_LK8toWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.repository.RepositoriesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_LK8tomaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.StagingView" label="Git Staging" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/staging.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.staging.StagingView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_LK9UsGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.InteractiveRebaseView" label="Git Interactive Rebase" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/rebase_interactive.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.rebase.RebaseInteractiveView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_LK9UsWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.CompareTreeView" label="Git Tree Compare" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/obj16/gitrepository.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.dialogs.CompareTreeView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
<tags>NoRestore</tags>
</descriptors>
<descriptors xmi:id="_LK9UsmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.ReflogView" label="Git Reflog" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/reflog.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.reflog.ReflogView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_LK9Us2aLEe-_AJixeOhSjw" elementId="org.eclipse.help.ui.HelpView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.png" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.help.ui.internal.views.HelpView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.help.ui"/>
<tags>View</tags>
<tags>categoryTag:Help</tags>
</descriptors>
<descriptors xmi:id="_LK97wGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.DisplayView" label="Debug Shell" iconURI="platform:/plugin/org.eclipse.jdt.debug.ui/icons/full/etool16/disp_sbook.png" tooltip="" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.debug.ui.display.DisplayView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_LK97wWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.junit.ResultView" label="JUnit" iconURI="platform:/plugin/org.eclipse.jdt.junit/icons/full/eview16/junit.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.junit.ui.TestRunnerViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.junit"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_LK-i0GaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.PackageExplorer" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_LK-i0WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.TypeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/class_hi.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_LK-i0maLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.ProjectsView" label="Projects" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/projects.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.ProjectsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java Browsing</tags>
</descriptors>
<descriptors xmi:id="_LK-i02aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.PackagesView" label="Packages" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/packages.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.PackagesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java Browsing</tags>
</descriptors>
<descriptors xmi:id="_LK_J4GaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.TypesView" label="Types" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/types.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.TypesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java Browsing</tags>
</descriptors>
<descriptors xmi:id="_LK_J4WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.MembersView" label="Members" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/members.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.MembersView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java Browsing</tags>
</descriptors>
<descriptors xmi:id="_LK_J4maLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/call_hierarchy.png" tooltip="" allowMultiple="true" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.callhierarchy.CallHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_LK_w8GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.texteditor.TemplatesView" label="Templates" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/templates.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.texteditor.templates.TemplatesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LK_w8WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.SourceView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_LK_w8maLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.JavadocView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.JavadocView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_LK_w82aLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.dockerContainersView" label="Docker Containers" iconURI="platform:/plugin/org.eclipse.linuxtools.docker.ui/icons/mock-repository.gif" tooltip="" category="Docker" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.linuxtools.internal.docker.ui.views.DockerContainersView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.linuxtools.docker.ui"/>
<tags>View</tags>
<tags>categoryTag:Docker</tags>
</descriptors>
<descriptors xmi:id="_LLAYAGaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.dockerImagesView" label="Docker Images" iconURI="platform:/plugin/org.eclipse.linuxtools.docker.ui/icons/dbgroup_obj.gif" tooltip="" category="Docker" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.linuxtools.internal.docker.ui.views.DockerImagesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.linuxtools.docker.ui"/>
<tags>View</tags>
<tags>categoryTag:Docker</tags>
</descriptors>
<descriptors xmi:id="_LLAYAWaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.dockerExplorerView" label="Docker Explorer" iconURI="platform:/plugin/org.eclipse.linuxtools.docker.ui/icons/repositories-blue.gif" tooltip="" category="Docker" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.linuxtools.internal.docker.ui.views.DockerExplorerView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.linuxtools.docker.ui"/>
<tags>View</tags>
<tags>categoryTag:Docker</tags>
</descriptors>
<descriptors xmi:id="_LLAYAmaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.dockerImageHierarchyView" label="Docker Image Hierarchy" iconURI="platform:/plugin/org.eclipse.linuxtools.docker.ui/icons/class_hi.png" tooltip="" category="Docker" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.linuxtools.internal.docker.ui.views.DockerImageHierarchyView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.linuxtools.docker.ui"/>
<tags>View</tags>
<tags>categoryTag:Docker</tags>
</descriptors>
<descriptors xmi:id="_LLAYA2aLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.core.views.MavenRepositoryView" label="Maven Repositories" iconURI="platform:/plugin/org.eclipse.m2e.core.ui/icons/maven_indexes.png" tooltip="" category="Maven" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.m2e.core.ui.internal.views.MavenRepositoryView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.m2e.core.ui"/>
<tags>View</tags>
<tags>categoryTag:Maven</tags>
</descriptors>
<descriptors xmi:id="_LLA_EGaLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.core.views.MavenBuild" label="Maven Workspace Build" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="Maven" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.m2e.core.ui.internal.views.build.BuildDebugView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.m2e.core.ui"/>
<tags>View</tags>
<tags>categoryTag:Maven</tags>
</descriptors>
<descriptors xmi:id="_LLBmIGaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.api.tools.ui.views.apitooling.views.apitoolingview" label="API Tools" iconURI="platform:/plugin/org.eclipse.pde.api.tools.ui/icons/full/obj16/api_tools.png" tooltip="" category="API Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.api.tools.ui.internal.views.APIToolingView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.api.tools.ui"/>
<tags>View</tags>
<tags>categoryTag:API Tools</tags>
</descriptors>
<descriptors xmi:id="_LLBmIWaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.runtime.RegistryBrowser" label="Plug-in Registry" iconURI="platform:/plugin/org.eclipse.pde.runtime/icons/eview16/registry.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.runtime.registry.RegistryBrowser"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.runtime"/>
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_LLBmImaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.PluginsView" label="Plug-ins" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/eview16/plugin_depend.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.plugins.PluginsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_LLBmI2aLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.FeaturesView" label="Features" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/feature_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.features.FeaturesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_LLCNMGaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.DependenciesView" label="Plug-in Dependencies" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/req_plugins_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.dependencies.DependenciesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_LLCNMWaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.TargetPlatformState" label="Target Platform State" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/target_profile_xml_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.target.TargetStateView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_LLCNMmaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.ImageBrowserView" label="Plug-in Image Browser" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/psearch_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.imagebrowser.ImageBrowserView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_LLCNM2aLEe-_AJixeOhSjw" elementId="org.eclipse.search.SearchResultView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.search.internal.ui.SearchResultView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLC0QGaLEe-_AJixeOhSjw" elementId="org.eclipse.search.ui.views.SearchView" label="Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.search2.internal.ui.SearchView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLC0QWaLEe-_AJixeOhSjw" elementId="org.eclipse.team.sync.views.SynchronizeView" label="Synchronize" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/synch_synch.png" tooltip="" allowMultiple="true" category="Version Control (Team)" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.team.internal.ui.synchronize.SynchronizeView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.team.ui"/>
<tags>View</tags>
<tags>categoryTag:Version Control (Team)</tags>
</descriptors>
<descriptors xmi:id="_LLDbUGaLEe-_AJixeOhSjw" elementId="org.eclipse.team.ui.GenericHistoryView" label="History" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/history_view.png" tooltip="" allowMultiple="true" category="Version Control (Team)" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.team.internal.ui.history.GenericHistoryView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.team.ui"/>
<tags>View</tags>
<tags>categoryTag:Version Control (Team)</tags>
</descriptors>
<descriptors xmi:id="_LLDbUWaLEe-_AJixeOhSjw" elementId="org.eclipse.tips.ide.tipPart" label="Tip of the Day" iconURI="platform:/plugin/org.eclipse.tips.ui/icons/lightbulb.png" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.tips.ide/org.eclipse.tips.ide.internal.TipPart">
<tags>View</tags>
<tags>categoryTag:Help</tags>
</descriptors>
<descriptors xmi:id="_LLDbUmaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" label="Terminal" iconURI="platform:/plugin/org.eclipse.tm.terminal.view.ui/icons/eview16/terminal_view.gif" tooltip="" allowMultiple="true" category="Terminal" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.tm.terminal.view.ui.view.TerminalsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.tm.terminal.view.ui"/>
<tags>View</tags>
<tags>categoryTag:Terminal</tags>
</descriptors>
<descriptors xmi:id="_LLECYGaLEe-_AJixeOhSjw" elementId="org.eclipse.tcf.te.ui.terminals.TerminalsView" label="Terminals (Old)" iconURI="platform:/plugin/org.eclipse.tm.terminal.view.ui/icons/eview16/terminal_view.gif" tooltip="" allowMultiple="true" category="Other" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.tm.terminal.view.ui.view.OldTerminalsViewHandler"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.tm.terminal.view.ui"/>
<tags>View</tags>
<tags>categoryTag:Other</tags>
</descriptors>
<descriptors xmi:id="_LLECYWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.internal.introview" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.ViewIntroAdapterPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLECYmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.browser.view" label="Internal Web Browser" iconURI="platform:/plugin/org.eclipse.ui.browser/icons/obj16/internal_browser.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.browser.WebBrowserView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.browser"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLECY2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.png" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.cheatsheets.views.CheatSheetView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.cheatsheets"/>
<tags>View</tags>
<tags>categoryTag:Help</tags>
</descriptors>
<descriptors xmi:id="_LLEpcGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.console.ConsoleView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console/icons/full/cview16/console_view.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.console.ConsoleView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.console"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLEpcWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ProgressView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/pview.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.progress.ProgressView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLEpcmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ResourceNavigator" label="Navigator (Deprecated)" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/filenav_nav.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.navigator.ResourceNavigator"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLFQgGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.BookmarkView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/bkmrk_nav.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.BookmarksView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLFQgWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.TaskList" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/tasks_tsk.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.TasksView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLFQgmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ProblemView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.ProblemsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLFQg2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.AllMarkersView" label="Markers" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.AllMarkersView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLF3kGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigator.ProjectExplorer" label="Project Explorer" iconURI="platform:/plugin/org.eclipse.ui.navigator.resources/icons/full/eview16/resource_persp.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.navigator.resources.ProjectExplorer"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.navigator.resources"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLF3kWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.PropertySheet" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.properties.PropertySheet"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLF3kmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.ContentOutline" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/outline_co.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.contentoutline.ContentOutline"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLF3k2aLEe-_AJixeOhSjw" elementId="org.eclipse.pde.runtime.LogView" label="Error Log" iconURI="platform:/plugin/org.eclipse.ui.views.log/icons/eview16/error_log.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.log.LogView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views.log"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLGeoGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.minimap.MinimapView" label="Minimap" iconURI="platform:/plugin/org.eclipse.ui.workbench.texteditor/icons/full/eview16/minimap.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.minimap.MinimapView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.workbench.texteditor"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLGeoWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.internet.monitor.view" label="TCP/IP Monitor" iconURI="platform:/plugin/org.eclipse.wst.internet.monitor.ui/icons/cview16/monitorView.gif" tooltip="" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.internet.monitor.ui.internal.view.MonitorView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.internet.monitor.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_LLHFsGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.server.ui.ServersView" label="Servers" iconURI="platform:/plugin/org.eclipse.wst.server.ui/icons/cview16/servers_view.gif" tooltip="" category="Server" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.server.ui.internal.cnf.ServersView2"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.server.ui"/>
<tags>View</tags>
<tags>categoryTag:Server</tags>
</descriptors>
<descriptors xmi:id="_LLHswGaLEe-_AJixeOhSjw" 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" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xml.ui.internal.views.annotations.XMLAnnotationsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xml.ui"/>
<tags>View</tags>
<tags>categoryTag:XML</tags>
</descriptors>
<descriptors xmi:id="_LLHswWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.ui.contentmodel.view" label="Content Model" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/view16/hierarchy.gif" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xml.ui.internal.views.contentmodel.ContentModelView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xml.ui"/>
<tags>View</tags>
<tags>categoryTag:XML</tags>
</descriptors>
<descriptors xmi:id="_LLHswmaLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.dash.views.BootDashView" label="Boot Dashboard" iconURI="platform:/plugin/org.springframework.ide.eclipse.boot.dash/icons/boot-icon.png" tooltip="" category="Other" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.springframework.ide.eclipse.boot.dash.views.BootDashTreeView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.springframework.ide.eclipse.boot.dash"/>
<tags>View</tags>
<tags>categoryTag:Other</tags>
</descriptors>
<descriptors xmi:id="_LLHsw2aLEe-_AJixeOhSjw" elementId="org.springframework.tooling.ls.eclipse.gotosymbol.view.SpringSymbolsView" label="Spring Symbols" iconURI="platform:/plugin/org.springframework.tooling.ls.eclipse.gotosymbol/icons/boot-icon.png" tooltip="" category="Other" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.springframework.tooling.ls.eclipse.gotosymbol.view.SpringSymbolsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.springframework.tooling.ls.eclipse.gotosymbol"/>
<tags>View</tags>
<tags>categoryTag:Other</tags>
</descriptors>
<descriptors xmi:id="_LLIT0GaLEe-_AJixeOhSjw" elementId="org.eclipse.gef.ui.palette_view" label="Palette" iconURI="platform:/plugin/org.eclipse.gef/icons/palette_view.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.gef.ui.views.palette.PaletteView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.gef"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLIT0WaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" label="Snippets" iconURI="platform:/plugin/org.eclipse.wst.common.snippets/icons/snippets_view.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.common.snippets.internal.ui.SnippetsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.common.snippets"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_LLIT0maLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/call_hierarchy.gif" tooltip="" category="Other" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.callhierarchy.CallHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Other</tags>
</descriptors>
<descriptors xmi:id="_LLJh8GaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/source.gif" tooltip="" category="Other" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.infoviews.SourceView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Other</tags>
</descriptors>
<descriptors xmi:id="_LLJh8WaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.JavadocView" label="Documentation" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/javadoc.gif" tooltip="JavaScript Documentation" category="Other" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.infoviews.JavadocView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Other</tags>
</descriptors>
<trimContributions xmi:id="_2r10UF9tEeO-yojH_y4TJA" elementId="org.eclipse.ui.ide.application.trimcontribution.QuickAccess" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" toBeRendered="false" parentId="org.eclipse.ui.main.toolbar" positionInParent="last">
<children xsi:type="menu:ToolControl" xmi:id="_76uUAF9tEeO-yojH_y4TJA" elementId="Spacer Glue" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
<tags>glue</tags>
<tags>move_after:PerspectiveSpacer</tags>
<tags>SHOW_RESTORE_MENU</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_8tJPcF9tEeO-yojH_y4TJA" elementId="SearchField" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.quickaccess.SearchField">
<tags>move_after:Spacer Glue</tags>
<tags>HIDEABLE</tags>
<tags>SHOW_RESTORE_MENU</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_9LgmcF9tEeO-yojH_y4TJA" elementId="Search-PS Glue" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
<tags>glue</tags>
<tags>move_after:SearchField</tags>
<tags>SHOW_RESTORE_MENU</tags>
</children>
</trimContributions>
<commands xmi:id="_K_UscGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UscWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.pageUp" commandName="Select Page Up" description="Select to the top of the page" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UscmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.toggleWordWrap" commandName="Toggle Word Wrap" description="Toggle word wrap in the current text editor" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Usc2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaseline" commandName="Reset quickdiff baseline" category="_K_TeeGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_UsdGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaselineTarget" name="Reset target (HEAD, HEAD^1)" optional="false"/>
</commands>
<commands xmi:id="_K_UsdWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.convertLocalToField.assist" commandName="Quick Assist - Convert local variable to field" description="Invokes quick assist and selects 'Convert local variable to field'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsdmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Usd2aLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.startContainers" commandName="&Start" description="Start the selected containers" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UseGaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.maximize" commandName="Maximize Active View or Editor" category="_K_TebGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UseWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.deletePreviousWord" commandName="Delete Previous Word" description="Delete the previous word" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsemaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.workspace" commandName="Declaration in Workspace" description="Search for declarations of the selected element in the workspace" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Use2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.delimiter.unix" commandName="Convert Line Delimiters to Unix (LF, \n, 0A, ¶)" description="Converts the line delimiters to Unix (LF, \n, 0A, ¶)" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsfGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.working.set" commandName="References in Working Set" description="Search for references to the selected element in a working set" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsfWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.working.set" commandName="Read Access in Working Set" description="Search for read references to the selected element in a working set" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsfmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.Edit" commandName="Edit Commit" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Usf2aLEe-_AJixeOhSjw" elementId="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard" commandName="Eclipse Marketplace" description="Show the Eclipse Marketplace wizard" category="_K_TeeGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_UsgGaLEe-_AJixeOhSjw" elementId="trigger" name="trigger"/>
</commands>
<commands xmi:id="_K_UsgWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.hotfixPublish" commandName="Publish Hotfix" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsgmaLEe-_AJixeOhSjw" elementId="org.eclipse.ant.ui.toggleMarkOccurrences" commandName="Toggle Ant Mark Occurrences" description="Toggles mark occurrences in Ant editors" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Usg2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.addToWorkingSet" commandName="Add to Working Set" description="Adds the selected object to a working set." category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UshGaLEe-_AJixeOhSjw" elementId="org.springframework.tooling.boot.ls.ToggleComment" commandName="Toggle Comment" category="_K_TeaGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UshWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Revert" commandName="Revert Commit" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UshmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.junit.junitShortcut.debug" commandName="Debug JUnit Test" description="Debug JUnit Test" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Ush2aLEe-_AJixeOhSjw" elementId="org.eclipse.mylyn.wikitext.ui.editor.showCheatSheetCommand" commandName="Show Markup Cheat Sheet" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsiGaLEe-_AJixeOhSjw" elementId="org.eclipse.team.ui.TeamSynchronizingPerspective" commandName="Team Synchronizing" description="Open the Team Synchronizing Perspective" category="_K_TecWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsiWaLEe-_AJixeOhSjw" elementId="org.eclipse.ant.ui.open.declaration.command" commandName="Open Declaration" description="Opens the Ant editor on the referenced element" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsimaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.editConnection" commandName="Edit..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Usi2aLEe-_AJixeOhSjw" elementId="org.eclipse.epp.mpc.ui.command.showInstalled" commandName="Manage installed plug-ins" description="Update or uninstall plug-ins installed from the Marketplace" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsjGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.create.delegate.methods" commandName="Generate Delegate Methods" description="Add delegate methods for a type's fields" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsjWaLEe-_AJixeOhSjw" elementId="org.eclipse.gef.ui.palette_view" commandName="Palette" category="_K_TeUWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsjmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.working.set" commandName="Write Access in Working Set" description="Search for write references to the selected element in a working set" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Usj2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.hierarchy" commandName="Read Access in Hierarchy" description="Search for read references of the selected element in its hierarchy" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UskGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.ToggleLineBreakpoint" commandName="Toggle Line Breakpoint" description="Creates or removes a line breakpoint" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UskWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UskmaLEe-_AJixeOhSjw" elementId="org.dadacoalition.yedit.commands.toggleComment" commandName="Toggle Comment" description="Turn comments on/off for a selection" category="_K_TeW2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Usk2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UslGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.project" commandName="Write Access in Project" description="Search for write references to the selected element in the enclosing project" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UslWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.commit.UnifiedDiffCommand" commandName="Show Unified Diff" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UslmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.move" commandName="Move..." description="Move the selected item" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Usl2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsmGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsmWaLEe-_AJixeOhSjw" elementId="org.eclipse.compare.ignoreWhiteSpace" commandName="Ignore White Space" description="Ignore white space where applicable" category="_K_TeY2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsmmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.hierarchy" commandName="Write Access in Hierarchy" description="Search for write references of the selected element in its hierarchy" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Usm2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.generate.constructor.using.fields" commandName="Generate Constructor using Fields" description="Choose fields to initialize and constructor from superclass to call " category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsnGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.featurePublish" commandName="Publish Feature" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_UsnWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.ui.disable.grammar.constraints" commandName="Turn off Grammar Constraints" description="Turn off grammar Constraints" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTgGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView" commandName="Show Java Element Type Hierarchy" description="Show a Java element in the Type Hierarchy view" category="_K_TeXWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_VTgWaLEe-_AJixeOhSjw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_K_VTgmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.goToResource" commandName="Go to Resource" description="Go to a particular resource in the active view" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTg2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VThGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.resetPerspective" commandName="Reset Perspective" description="Reset the current perspective to its default state" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VThWaLEe-_AJixeOhSjw" elementId="AnsiConsole.command.enable_disable" commandName="Enable / Disable Ansi Console" description="Enable / disable Ansi Console" category="_K_TeXmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VThmaLEe-_AJixeOhSjw" elementId="org.eclipse.mylyn.wikitext.ui.quickOutlineCommand" commandName="Quick Outline" description="Open a popup dialog with a quick outline of the current document" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTh2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.project" commandName="References in Project" description="Search for references to the selected element in the enclosing project" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTiGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.project.buildLast" commandName="Repeat Working Set Build" description="Repeat the last working set build" category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTiWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.project.buildProject" commandName="Build Project" description="Build the selected project" category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTimaLEe-_AJixeOhSjw" elementId="org.eclipse.compare.switchLeftAndRight" commandName="Swap Left and Right View" description="Switch the left and right sides in the compare editor" category="_K_TeY2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTi2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.textStart" commandName="Text Start" description="Go to the beginning of the text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTjGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTjWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.working.set" commandName="Declaration in Working Set" description="Search for declarations of the selected element in a working set" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTjmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.featureCheckout" commandName="Check Out Feature" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTj2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify var access" description="Invokes quick assist and selects 'Qualify var access'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTkGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.run" commandName="Run Java Applet" description="Run Java Applet" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTkWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTkmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.clean" commandName="Clean..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTk2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.rename" commandName="Rename" description="Rename the selected item" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTlGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.project.buildAll" commandName="Build All" description="Build all projects" category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTlWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.OpenInTextEditorCommand" commandName="Open in Text Editor" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTlmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.cut.line.to.beginning" commandName="Cut to Beginning of Line" description="Cut to the beginning of a line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTl2aLEe-_AJixeOhSjw" elementId="org.eclipse.buildship.ui.commands.runtasks" commandName="Run Gradle Tasks" description="Runs all the selected Gradle tasks" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTmGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb" commandName="Toggle Java Editor Breadcrumb" description="Toggle the Java editor breadcrumb" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTmWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.editors.revisions.rendering.cycle" commandName="Cycle Revision Coloring Mode" description="Cycles through the available coloring modes for revisions" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTmmaLEe-_AJixeOhSjw" elementId="org.eclipse.ant.ui.renameInFile" commandName="Rename In File" description="Renames all references within the same buildfile" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTm2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTnGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.extract.interface" commandName="Extract Interface" description="Extract a set of members into a new interface and try to use the new interface" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTnWaLEe-_AJixeOhSjw" elementId="org.eclipse.ltk.ui.refactoring.commands.moveResources" commandName="Move Resources" description="Move the selected resources and notify LTK participants." category="_K_TecmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTnmaLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.actions.LifeCycleGenerateSources.run" commandName="Run Maven Generate Sources" description="Run Maven Generate Sources" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTn2aLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.copytocontainer" commandName="Copy to Container" description="Copy local files to a running Container" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VToGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.StepInto" commandName="Step Into" description="Step into" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VToWaLEe-_AJixeOhSjw" elementId="org.eclipse.e4.ui.importer.openDirectory" commandName="Open Projects from File System..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTomaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.structure.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTo2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.commands.AddExceptionBreakpoint" commandName="Add Java Exception Breakpoint" description="Add a Java exception breakpoint" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTpGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTpWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewClearCredentials" commandName="Clear Credentials" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTpmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.commands.ToggleTracepoint" commandName="Toggle Tracepoint" description="Creates or removes a tracepoint " category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTp2aLEe-_AJixeOhSjw" elementId="org.eclipse.mylyn.wikitext.ui.convertToMarkupCommand" commandName="Generate Markup" category="_K_TeeGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_VTqGaLEe-_AJixeOhSjw" elementId="org.eclipse.mylyn.wikitext.ui.targetLanguage" name="TargetLanguage" optional="false"/>
</commands>
<commands xmi:id="_K_VTqWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTqmaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.view.ui.command.launchToolbar" commandName="Open Local Terminal on Selection" category="_K_TeYmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTq2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.showViewMenu" commandName="Show View Menu" description="Show the view menu" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTrGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Commit" commandName="Commit..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTrWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or method" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTrmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.shiftRight" commandName="Shift Right" description="Shift a block of text to the right" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTr2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.backwardHistory" commandName="Backward History" description="Move backward in the editor navigation history" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTsGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.working.set" commandName="Implementors in Working Set" description="Search for implementors of the selected interface in a working set" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTsWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.removeTrailingWhitespace" commandName="Remove Trailing Whitespace" description="Removes the trailing whitespace of each line" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTsmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.findIncremental" commandName="Incremental Find" description="Incremental find" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTs2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTtGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.assignToLocal.assist" commandName="Quick Assist - Assign to local variable" description="Invokes quick assist and selects 'Assign to local variable'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTtWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.ImportChangedProjectsCommandId" commandName="Import Changed Projects" description="Import or create in local Git repository" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTtmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.return.continue.targets" commandName="Search break/continue Target Occurrences in File" description="Search for break/continue target occurrences of a selected target name" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTt2aLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.dash.ToggleLineNumbers" commandName="Toggle Line Numbers" description="Toggle Line Numbers" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTuGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTuWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.create.getter.setter" commandName="Generate Getters and Setters" description="Generate Getter and Setter methods for type's fields" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTumaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.edit.text.format" commandName="Format Source" description="Format a PDE Source Page" category="_K_Ted2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTu2aLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.pauseContainers" commandName="&Pause" description="Pause the selected containers" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTvGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTvWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewCollapseWorkingTree" commandName="Collapse Working Tree" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTvmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewNewRemote" commandName="Create Remote..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTv2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTwGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.delete.line" commandName="Delete Line" description="Delete a line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTwWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTwmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.open.implementation" commandName="Open Implementation" description="Opens the Implementations of a method or a type in its hierarchy" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTw2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.junit.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTxGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.find.broken.nls.keys" commandName="Find Broken Externalized Strings" description="Finds undefined, duplicate and unused externalized string keys in property files" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTxWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.commands.showElementInPackageView" commandName="Show Java Element in Package Explorer" description="Select Java element in the Package Explorer view" category="_K_TeXWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_VTxmaLEe-_AJixeOhSjw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_K_VTx2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.commands.InstanceCount" commandName="Instance Count" description="View the instance count of the selected type loaded in the target VM" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTyGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_VTyWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.MergeTool" commandName="Merge Tool" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6kGaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.addAllPluginsToJavaSearch" commandName="Add All Plug-ins to Java Workspace Scope" description="Adds all plug-ins in the target platform to Java workspace scope" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6kWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.command.shareProject" commandName="Share with Git" description="Share the project using Git" category="_K_TeeGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_V6kmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.command.projectNameParameter" name="Project" optional="false"/>
</commands>
<commands xmi:id="_K_V6k2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.convert.anonymous.to.nested" commandName="Convert Anonymous Class to Nested" description="Convert an anonymous class to a nested class" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6lGaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.quickOutline" commandName="Quick Outline" description="Open a quick outline popup dialog for a given editor input" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6lWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.fullscreenmode" commandName="Toggle Full Screen" description="Toggles the window between full screen and normal" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6lmaLEe-_AJixeOhSjw" elementId="org.eclipse.equinox.p2.ui.sdk.installationDetails" commandName="Installation Details" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6l2aLEe-_AJixeOhSjw" elementId="org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize resources in the workspace with another location" category="_K_TeUGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6mGaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.pullImage" commandName="&Pull..." description="Pull Image from registry" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6mWaLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.profiles.ui.commands.selectMavenProfileCommand" commandName="Select Maven Profiles" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6mmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor" description="Switch to the next editor" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6m2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.internal.reflog.CopyCommand" commandName="Copy Commit Id" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6nGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.help.helpContents" commandName="Help Contents" description="Open the help contents" category="_K_TeZ2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6nWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6nmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Reset" commandName="Reset..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6n2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.delete" commandName="Delete" description="Delete the selection" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6oGaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.configureLabels" commandName="&Configure Labels Filter..." description="Configure container labels to match with for filter." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6oWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.delete.line.to.beginning" commandName="Delete to Beginning of Line" description="Delete to the beginning of a line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6omaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.RenameBranch" commandName="Rename Branch..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6o2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Synchronize" commandName="Synchronize" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6pGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.working.set" commandName="Declaration in Working Set" description="Search for declarations of the selected element in a working set" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6pWaLEe-_AJixeOhSjw" elementId="org.springframework.tooling.ls.eclipse.commons.commands.OpenResourceInEditor" commandName="Open File in Editor" category="_K_TeeGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_V6pmaLEe-_AJixeOhSjw" elementId="path" name="path" optional="false"/>
</commands>
<commands xmi:id="_K_V6p2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.findPrevious" commandName="Find Previous" description="Find previous item" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6qGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.ToggleBreakpoint" commandName="Toggle Breakpoint" description="Creates or removes a breakpoint" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6qWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.scroll.lineUp" commandName="Scroll Line Up" description="Scroll up one line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6qmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6q2aLEe-_AJixeOhSjw" elementId="org.eclipse.pde.runtime.spy.commands.spyCommand" commandName="Plug-in Selection Spy" description="Show the Plug-in Spy" category="_K_TedmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6rGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6rWaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.buildImage" commandName="&Build Image" description="Build Image from Dockerfile" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6rmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.folding.toggle" commandName="Toggle Folding" description="Toggles folding in the current editor" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6r2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters" commandName="Show Whitespace Characters" description="Shows whitespace characters in current text editor" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6sGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.gotoNextEditPosition" commandName="Next Edit Location" description="Next edit location" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6sWaLEe-_AJixeOhSjw" elementId="org.eclipse.lsp4e.symbolinworkspace" commandName="Go to Symbol in Workspace" category="_K_TeYGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6smaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.revert" commandName="Revert" description="Revert to the last saved state" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6s2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6tGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.import" commandName="Import" description="Import" category="_K_TeYWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_V6tWaLEe-_AJixeOhSjw" elementId="importWizardId" name="Import Wizard"/>
</commands>
<commands xmi:id="_K_V6tmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.Merge" commandName="Merge" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6t2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.switchToEditor" commandName="Switch to Editor" description="Switch to an editor" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6uGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.find.broken.nls.keys" commandName="Find Broken Externalized Strings" description="Finds undefined, duplicate and unused externalized string keys in property files" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6uWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.help.dynamicHelp" commandName="Show Context Help" description="Open the contextual help" category="_K_TeZ2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6umaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into Java comments" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6u2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.occurrences.in.file.quickMenu" commandName="Show Occurrences in File Quick Menu" description="Shows the Occurrences in File quick menu" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6vGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the JavaScript file" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6vWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.toggleInsertMode" commandName="Toggle Insert Mode" description="Toggle insert mode" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6vmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewDelete" commandName="Delete Repository" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6v2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.closePart" commandName="Close Part" description="Close the active workbench part" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6wGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.editors.revisions.id.toggle" commandName="Toggle Revision Id Display" description="Toggles the display of the revision id" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6wWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.project.cleanAction" commandName="Build Clean" description="Discard old built state" category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6wmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.back" commandName="Back" description="Navigate back" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6w2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.wordNext" commandName="Select Next Word" description="Select the next word" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6xGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.JavaBrowsingPerspective" commandName="Java Browsing" description="Show the Java Browsing perspective" category="_K_TecWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6xWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.pageDown" commandName="Page Down" description="Go down one page" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6xmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.project" commandName="Implementors in Project" description="Search for implementors of the selected interface in the enclosing project" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6x2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.GarbageCollect" commandName="Collect Garbage" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6yGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.CompareWithWorkingTree" commandName="Compare with Working Tree" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6yWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Branch" commandName="Branch" description="Check out, rename, create, or delete a branch in a git repository" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6ymaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.openInHierarchyView" commandName="Open Image Hierarchy" description="Open the Docker image Hierarchy view" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6y2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.ui.previousSibling" commandName="Previous Sibling" description="Go to Previous Sibling" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6zGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigurePush" commandName="Configure Push..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6zWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.findIncrementalReverse" commandName="Incremental Find Reverse" description="Incremental find reverse" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V6zmaLEe-_AJixeOhSjw" elementId="org.eclipse.epp.mpc.ui.command.importFavoritesWizard" commandName="Import Marketplace Favorites" description="Import another user's Marketplace Favorites List" category="_K_TeeGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_V6z2aLEe-_AJixeOhSjw" elementId="favoritesUrl" name="favoritesUrl"/>
</commands>
<commands xmi:id="_K_V60GaLEe-_AJixeOhSjw" elementId="org.eclipse.ant.ui.antShortcut.run" commandName="Run Ant Build" description="Run Ant Build" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V60WaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.convertAnonymousToLocal.assist" commandName="Quick Assist - Convert anonymous to local class" description="Invokes quick assist and selects 'Convert anonymous to local class'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V60maLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.stash.apply" commandName="Apply Stashed Changes" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V602aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V61GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.columnNext" commandName="Next Column" description="Go to the next column" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V61WaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.Squash" commandName="Squash Commits" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V61maLEe-_AJixeOhSjw" elementId="org.eclipse.search.ui.performTextSearchWorkingSet" commandName="Find Text in Working Set" description="Searches the files in the working set for specific text." category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V612aLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.dash.boot.dash.OpenLaunchConfigAction" commandName="Open Config" description="Open Launch Configuration" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V62GaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.occurrences.in.file.quickMenu" commandName="Show Occurrences in File Quick Menu" description="Shows the Occurrences in File quick menu" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V62WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.wordNext" commandName="Next Word" description="Go to the next word" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V62maLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.convertLocalToField.assist" commandName="Quick Assist - Convert local variable to var" description="Invokes quick assist and selects 'Convert local variable to var'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V622aLEe-_AJixeOhSjw" elementId="org.eclipse.quickdiff.toggle" commandName="Quick Diff Toggle" description="Toggles quick diff information display on the line number ruler" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V63GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.deleteNext" commandName="Delete Next" description="Delete the next character" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V63WaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.FetchGerritChange" commandName="Fetch From Gerrit" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V63maLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.ReplaceWithTheirs" commandName="Replace Conflicting Files with Their Revision" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V632aLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.removeContainers" commandName="&Remove" description="Remove the selected containers" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V64GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.toggleShowKeys" commandName="Toggle Show Key Bindings" description="Shows key binding when command is invoked" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V64WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.commands.Watch" commandName="Watch" description="Create new watch expression" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V64maLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.Reword" commandName="Reword Commit" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V642aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.OpenCommit" commandName="Open Git Commit" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V65GaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.server.stop" commandName="Stop" description="Stop the server" category="_K_TeX2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V65WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.help.displayHelp" commandName="Display Help" description="Display a Help topic" category="_K_TeZ2aLEe-_AJixeOhSjw">
<parameters xmi:id="_K_V65maLEe-_AJixeOhSjw" elementId="href" name="Help topic href"/>
</commands>
<commands xmi:id="_K_V652aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.pageDown" commandName="Select Page Down" description="Select to the bottom of the page" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V66GaLEe-_AJixeOhSjw" elementId="org.eclipse.ltk.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V66WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.join.lines" commandName="Join Lines" description="Join lines of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V66maLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.refreshConnection" commandName="Refresh" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V662aLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.pushImage" commandName="P&ush..." description="Push Image tag to registry" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V67GaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V67WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.showContextMenu" commandName="Show Context Menu" description="Show the context menu" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V67maLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.extract.local.variable" commandName="Extract Local Variable" description="Extracts an expression into a new local variable and uses the new local variable" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_V672aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.InstallLfsLocal" commandName="Enable LFS locally" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhoGaLEe-_AJixeOhSjw" elementId="org.dadacoalition.yedit.commands.toggleCollapse" commandName="Toggle Collapse" description="Toggle if the outline should be collapse or not" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhoWaLEe-_AJixeOhSjw" elementId="org.eclipse.ltk.ui.refactor.show.refactoring.history" commandName="Open Refactoring History " description="Opens the refactoring history" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhomaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.hierarchy" commandName="Read Access in Hierarchy" description="Search for read references of the selected element in its hierarchy" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Who2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals" commandName="Quick Fix" description="Suggest possible fixes for a problem" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhpGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.log.jdt.showinconsole" commandName="&Show In Console" description="Show Stack Trace in Console View" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhpWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhpmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.nextPerspective" commandName="Next Perspective" description="Switch to the next perspective" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Whp2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.console.clear" commandName="Clear Console" description="Clear Console" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhqGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.working.set" commandName="Write Access in Working Set" description="Search for write references to the selected element in a working set" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhqWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.ShowVersions" commandName="Open this Version" category="_K_TeeGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_WhqmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.CompareMode" name="Compare mode"/>
</commands>
<commands xmi:id="_K_Whq2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab" description="Switch to the next tab" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhrGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.quickAccess" commandName="Find Actions" description="Quickly access UI elements" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhrWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.showInformation" commandName="Show Tooltip Description" description="Displays information for the current caret location in a focused hover" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhrmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Whr2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.releasePublish" commandName="Publish Release" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhsGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.extractLocal.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhsWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhsmaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.toggleMemoryMonitorsPane" commandName="Toggle Memory Monitors Pane" description="Toggle visibility of the Memory Monitors Pane" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Whs2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.implementors.in.working.set" commandName="Implementors in Working Set" description="Search for implementors of the selected interface in a working set" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhtGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Discard" commandName="Replace with File in Index" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhtWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewCreateBranch" commandName="Create Branch..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhtmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewCopyPath" commandName="Copy Path to Clipboard" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wht2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.showRulerAnnotationInformation" commandName="Show Ruler Annotation Tooltip" description="Displays annotation information for the caret line in a focused hover" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhuGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.browser.openBrowser" commandName="Open Browser" description="Opens the default web browser." category="_K_TeZWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_WhuWaLEe-_AJixeOhSjw" elementId="url" name="URL"/>
<parameters xmi:id="_K_WhumaLEe-_AJixeOhSjw" elementId="browserId" name="Browser Id"/>
<parameters xmi:id="_K_Whu2aLEe-_AJixeOhSjw" elementId="name" name="Browser Name"/>
<parameters xmi:id="_K_WhvGaLEe-_AJixeOhSjw" elementId="tooltip" name="Browser Tooltip"/>
</commands>
<commands xmi:id="_K_WhvWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.implement.occurrences" commandName="Search Implement Occurrences in File" description="Search for implement occurrences of a selected type" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhvmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.DeleteBranch" commandName="Delete Branch" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Whv2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.contentAssist.contextInformation" commandName="Context Information" description="Show Context Information" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhwGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.saveAs" commandName="Save As" description="Save the current contents to another location" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhwWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.workspace" commandName="Read Access in Workspace" description="Search for read references to the selected element in the workspace" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhwmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.previousPerspective" commandName="Previous Perspective" description="Switch to the previous perspective" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Whw2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.splitEditor" commandName="Toggle Split Editor" description="Split or join the currently active editor." category="_K_TeZWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_WhxGaLEe-_AJixeOhSjw" elementId="Splitter.isHorizontal" name="Orientation" optional="false"/>
</commands>
<commands xmi:id="_K_WhxWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.collapseAll" commandName="Collapse All" description="Collapse the current tree" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhxmaLEe-_AJixeOhSjw" elementId="org.eclipse.compare.copyAllRightToLeft" commandName="Copy All from Right to Left" description="Copy All Changes from Right to Left" category="_K_TeY2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Whx2aLEe-_AJixeOhSjw" elementId="org.eclipse.lsp4e.togglelinkwitheditor" commandName="Toggle Link with Editor" category="_K_TeYGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhyGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.lockToolBar" commandName="Toggle Lock Toolbars" description="Toggle the Lock on the Toolbars" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhyWaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.Disconnect" commandName="Disconnect" description="Disconnect" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhymaLEe-_AJixeOhSjw" elementId="org.eclipse.lsp4e.format" commandName="Format" category="_K_TeYGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Why2aLEe-_AJixeOhSjw" elementId="org.springframework.tooling.ls.eclipse.gotosymbol.command" commandName="Goto Symbol" category="_K_TeUmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhzGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.workspace" commandName="Write Access in Workspace" description="Search for write references to the selected element in the workspace" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhzWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.removeFromWorkingSet" commandName="Remove From Working Set" description="Removes the selected object from a working set." category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WhzmaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.createAntBuildFile" commandName="Create Ant Build File" description="Creates an Ant build file for the current project" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Whz2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.changeToStatic" commandName="Quick Fix - Change to static access" description="Invokes quick assist and selects 'Change to static access'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh0GaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesLinkWithSelection" commandName="Toggle "Link with Editor and Selection" (Git Repositories View)" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh0WaLEe-_AJixeOhSjw" elementId="AnsiConsole.command.show_quick_settings" commandName="Show Ansi Console preferences" description="Show the preferences for Ansi Console and the generic console" category="_K_TeXmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh0maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ide.deleteCompleted" commandName="Delete Completed Tasks" description="Delete the tasks marked as completed" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh02aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.validation.ValidationCommand" commandName="Validate" description="Invoke registered Validators" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh1GaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.add.javadoc.comment" commandName="Add Javadoc Comment" description="Add a Javadoc comment stub to the member element" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh1WaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RebaseInteractiveCurrent" commandName="Interactive Rebase" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh1maLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh12aLEe-_AJixeOhSjw" elementId="AnsiConsole.command.copy_with_escapes" commandName="Copy text with escapes" description="Copy the console content to clipboard, including the escape sequences" category="_K_TeXmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh2GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh2WaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.runImage" commandName="Run" description="Run an Image" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh2maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.deleteNextWord" commandName="Delete Next Word" description="Delete the next word" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh22aLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.properties.editor.convertPropertiesToYaml" commandName="Convert .properties to .yaml" category="_K_TeVmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh3GaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.openDependencies" commandName="Open Plug-in Dependencies" description="Opens the plug-in dependencies view for the current plug-in" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh3WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in Java editors" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh3maLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.SkipRebase" commandName="Skip commit and continue" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh32aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected method" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh4GaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.hierarchy" commandName="Declaration in Hierarchy" description="Search for declarations of the selected element in its hierarchy" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh4WaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.SetQuickdiffBaseline" commandName="Set quickdiff baseline" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh4maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.undo" commandName="Undo" description="Undo the last operation" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh42aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.newQuickMenu" commandName="New menu" description="Open the New menu" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh5GaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh5WaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.actions.WatchCommand" commandName="Watch" description="Create a watch expression from the current selection and add it to the Expressions view" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh5maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.openWorkspace" commandName="Switch Workspace" description="Open the workspace selection dialog" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh52aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh6GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.closeAll" commandName="Close All" description="Close all editors" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh6WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a Java editor" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh6maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh62aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.indirection" commandName="Introduce Indirection" description="Introduce an indirection to encapsulate invocations of a selected method" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh7GaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Merge" commandName="Merge" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh7WaLEe-_AJixeOhSjw" elementId="org.eclipse.ltk.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh7maLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.ReplaceWithRef" commandName="Replace with branch, tag, or reference" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh72aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.extract.superclass" commandName="Extract Superclass" description="Extract a set of members into a new superclass and try to use the new superclass" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh8GaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.ui.reload.dependencies" commandName="Reload Dependencies" description="Reload Dependencies" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh8WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" commandName="Show Selected Element Only" description="Show Selected Element Only" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh8maLEe-_AJixeOhSjw" elementId="org.eclipse.tm4e.languageconfiguration.removeblockcommentcommand" commandName="Remove Block Comment" category="_K_TeVGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh82aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.internal.merge.ToggleCurrentChangesCommand" commandName="Ignore Changes from Ancestor to Current Version" description="Toggle ignoring changes only between the ancestor and the current version in a three-way merge comparison" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh9GaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh9WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.junit.junitShortcut.rerunFailedFirst" commandName="Rerun JUnit Test - Failures First" description="Rerun JUnit Test - Failures First" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh9maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.export" commandName="Export" description="Export" category="_K_TeYWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_Wh92aLEe-_AJixeOhSjw" elementId="exportWizardId" name="Export Wizard"/>
</commands>
<commands xmi:id="_K_Wh-GaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xsd.ui.refactor.makeTypeGlobal" commandName="Make &Anonymous Type Global" description="Promotes anonymous type to global level and replaces its references" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh-WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.implementors.in.project" commandName="Implementors in Project" description="Search for implementors of the selected interface in the enclosing project" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh-maLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.ApplyPatch" commandName="Apply Patch" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh-2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.JavaPerspective" commandName="Java" description="Show the Java perspective" category="_K_TecWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh_GaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.indent" commandName="Correct Indentation" description="Corrects the indentation of the selected lines" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh_WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ide.copyConfigCommand" commandName="Copy Configuration Data To Clipboard" description="Copies the configuration data (system properties, installed bundles, etc) to the clipboard." category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh_maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.forwardHistory" commandName="Forward History" description="Move forward in the editor navigation history" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Wh_2aLEe-_AJixeOhSjw" elementId="org.eclipse.search.ui.performTextSearchProject" commandName="Find Text in Project" description="Searches the files in the project for specific text." category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiAGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.project.rebuildAll" commandName="Rebuild All" description="Rebuild all projects" category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiAWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.try.with.resources" commandName="Surround with try-with-resources Block" description="Surround the selected text with a try-with-resources block" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiAmaLEe-_AJixeOhSjw" elementId="org.eclipse.gef.zoom_in" commandName="Zoom In" description="Zoom In" category="_K_TedGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiA2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiBGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.openLocalFile" commandName="Open File..." description="Open a file" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiBWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Disconnect" commandName="Disconnect" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiBmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiB2aLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.externalizeStrings" commandName="Externalize Strings in Plug-ins" description="Extract translatable strings from plug-in files" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiCGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.refresh" commandName="Refresh" description="Refresh the selected items" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiCWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.ReplaceWithOurs" commandName="Replace Conflicting Files with Our Revision" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiCmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewChangeCredentials" commandName="Change Credentials" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiC2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.extractMethodInplace.assist" commandName="Quick Assist - Extract method" description="Invokes quick assist and selects 'Extract to method'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiDGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.closeAllPerspectives" commandName="Close All Perspectives" description="Close all open perspectives" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiDWaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.TerminateAll" commandName="Terminate/Disconnect All" description="Terminate/Disconnect All" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiDmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiD2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.lineStart" commandName="Select Line Start" description="Select to the beginning of the line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiEGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.commit.Reword" commandName="Reword Commit" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiEWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in JavaScript editors" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiEmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.editors.lineNumberToggle" commandName="Show Line Numbers" description="Toggle display of line numbers" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiE2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit" commandName="Toggle Latest Branch Commit" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiFGaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.paste" commandName="Paste" category="_K_TebGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiFWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.PushCommit" commandName="Push Commit..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiFmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to var" description="Invokes quick assist and selects 'Assign to var'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiF2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ide.showInSystemExplorer" commandName="Show In (System Explorer)" description="Show in system's explorer (file manager)" category="_K_TeXWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_WiGGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ide.showInSystemExplorer.path" name="Resource System Path Parameter"/>
</commands>
<commands xmi:id="_K_WiGWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.lineDown" commandName="Select Line Down" description="Extend the selection to the next line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiGmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiG2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.lowerCase" commandName="To Lower Case" description="Changes the selection to lower case" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiHGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.CompareWithIndex" commandName="Compare with Index" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiHWaLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.discovery.ui" commandName="m2e Marketplace" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiHmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.zoomOut" commandName="Zoom Out" description="Zoom out text, decrease default font size for text editors" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiH2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.save" commandName="Save" description="Save the current contents" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiIGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.assignAllParamsToNewFields.assist" commandName="Quick Assist - Assign all parameters to new fields" description="Invokes quick assist and selects 'Assign all parameters to new fields'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiIWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.project" commandName="References in Project" description="Search for references to the selected element in the enclosing project" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiImaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.occurrences.in.file" commandName="Search All Occurrences in File" description="Search for all occurrences of the selected element in its declaring file" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiI2aLEe-_AJixeOhSjw" elementId="org.eclipse.team.ui.applyPatch" commandName="Apply Patch..." description="Apply a patch to one or more workspace projects." category="_K_TeUGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiJGaLEe-_AJixeOhSjw" elementId="org.eclipse.buildship.ui.commands.rundefaulttasks" commandName="Run Gradle Default Tasks" description="Runs the default tasks of the selected Gradle project" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiJWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.lineEnd" commandName="Select Line End" description="Select to the end of the line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiJmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiJ2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiKGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.indent" commandName="Indent Line" description="Indents the current line" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiKWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiKmaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.StepOver" commandName="Step Over" description="Step over" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiK2aLEe-_AJixeOhSjw" elementId="org.eclipse.tm4e.languageconfiguration.addblockcommentcommand" commandName="Add Block Comment" category="_K_TeVGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiLGaLEe-_AJixeOhSjw" elementId="org.eclipse.compare.selectPreviousChange" commandName="Select Previous Change" description="Select Previous Change" category="_K_TeY2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiLWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.exit" commandName="Exit" description="Exit the application" category="_K_TeYWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_WiLmaLEe-_AJixeOhSjw" elementId="mayPrompt" name="may prompt"/>
</commands>
<commands xmi:id="_K_WiL2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.CompareWithHead" commandName="Compare with HEAD Revision" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_WiMGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.CompareWithCommit" commandName="Compare with Commit..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIsGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewOpen" commandName="Open" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIsWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.ShowHistory" commandName="Show in History" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIsmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIs2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.toggle.codemining" commandName="Toggle Code Mining" description="Toggle Code Mining Annotations" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XItGaLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.core.ui.command.updateProject" commandName="Update Project" description="Update Maven project configuration and dependencies" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XItWaLEe-_AJixeOhSjw" elementId="org.eclipse.tools.layout.spy.commands.layoutSpyCommand" commandName="Layout Spy" description="Show the Layout Spy" category="_K_TedmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XItmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.SimplePush" commandName="Push to Upstream" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIt2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.addMemoryMonitor" commandName="Add Memory Block" description="Add memory block" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIuGaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.commitContainer" commandName="Commit" description="Commit the selected container into a new image" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIuWaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.organizeManifest" commandName="Organize Manifests" description="Cleans up plug-in manifest files" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIumaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIu2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.junit.junitShortcut.run" commandName="Run JUnit Test" description="Run JUnit Test" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIvGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.PushHeadToGerrit" commandName="Push Current Head to Gerrit" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIvWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.selectAll" commandName="Select All" description="Select all" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIvmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIv2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the compilation unit" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIwGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.project.rebuildProject" commandName="Rebuild Project" description="Rebuild the selected projects" category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIwWaLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.core.pomFileAction.run" commandName="Run Maven Build" description="Run Maven Build" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIwmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.init" commandName="Init Gitflow..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIw2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.releaseStart" commandName="Start Release" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIxGaLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.actions.LifeCycleInstall.run" commandName="Run Maven Install" description="Run Maven Install" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIxWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.copyLineDown" commandName="Copy Lines" description="Duplicates the selected lines and moves the selection to the copy" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIxmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.compareWithDevelop" commandName="Compare with develop branch" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIx2aLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.tagImage" commandName="Add &Tag" description="Add a tag to an Image" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIyGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.raw.paste" commandName="Raw Paste" description="Paste and ignore smart insert setting" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIyWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.help.installationDialog" commandName="Installation Information" description="Open the installation dialog" category="_K_TeZ2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIymaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIy2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.ToggleStepFilters" commandName="Use Step Filters" description="Toggles enablement of debug step filters" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIzGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.lineUp" commandName="Line Up" description="Go up one line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIzWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.windowStart" commandName="Window Start" description="Go to the start of the window" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIzmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.addBlock.assist" commandName="Quick Assist - Replace statement with block" description="Invokes quick assist and selects 'Replace statement with block'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XIz2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.commit.DiffEditorQuickOutlineCommand" commandName="Quick Outline" description="Show the quick outline for a unified diff" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI0GaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI0WaLEe-_AJixeOhSjw" elementId="org.eclipse.ant.ui.antShortcut.debug" commandName="Debug Ant Build" description="Debug Ant Build" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI0maLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.addNonNLS" commandName="Quick Fix - Add non-NLS tag" description="Invokes quick assist and selects 'Add non-NLS tag'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI02aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.AssumeUnchanged" commandName="Assume Unchanged" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI1GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.closePerspective" commandName="Close Perspective" description="Close the current perspective" category="_K_TeZWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_XI1WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.closePerspective.perspectiveId" name="Perspective Id"/>
</commands>
<commands xmi:id="_K_XI1maLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI12aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.ui.nextSibling" commandName="Next Sibling" description="Go to Next Sibling" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI2GaLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.dash.ShowBootDashboard" commandName="Boot Dashboard" description="Show Boot Dashboard view" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI2WaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a JavaScript editor" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI2maLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.execContainer" commandName="Execute Shell" description="Get an interactive shell into this container" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI22aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.cheatsheets.openCheatSheetURL" commandName="Open Cheat Sheet from URL" description="Open a Cheat Sheet from file at a specified URL." category="_K_TeZ2aLEe-_AJixeOhSjw">
<parameters xmi:id="_K_XI3GaLEe-_AJixeOhSjw" elementId="cheatSheetId" name="Identifier" optional="false"/>
<parameters xmi:id="_K_XI3WaLEe-_AJixeOhSjw" elementId="name" name="Name" optional="false"/>
<parameters xmi:id="_K_XI3maLEe-_AJixeOhSjw" elementId="url" name="URL" optional="false"/>
</commands>
<commands xmi:id="_K_XI32aLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.addConnection" commandName="&Add Connection" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI4GaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.PushBranch" commandName="Push Branch..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI4WaLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.core.ui.command.addDependency" commandName="Add Maven Dependency" description="Add Maven dependency" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI4maLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.commands.Execute" commandName="Execute" description="Evaluate selected text" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI42aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI5GaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.navigate.gotopackage" commandName="Go to Folder" description="Go to Folder" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI5WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.project" commandName="Read Access in Project" description="Search for read references to the selected element in the enclosing project" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI5maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.closeAllSaved" commandName="Close All Saved" description="Close all saved editors" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI52aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.server.launchShortcut.run" commandName="Run on Server" description="Run the current selection on a server" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI6GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.redo" commandName="Redo" description="Redo the last operation" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI6WaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.server.launchShortcut.debug" commandName="Debug on Server" description="Debug the current selection on a server" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI6maLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.editor.RenameArtifactAction" commandName="Rename Maven Artifact..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI62aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.selectWorkingSets" commandName="Select Working Sets" description="Select the working sets that are applicable for this window." category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI7GaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.displayContainerLog" commandName="Display Log" description="Display the log for the selected container in the Console" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI7WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI7maLEe-_AJixeOhSjw" elementId="org.eclipse.pde.api.tools.ui.remove.filters" commandName="Remove &API Problem Filters..." description="Remove API problem filters for this project" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI72aLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.view.ui.command.newview" commandName="New Terminal View" category="_K_TeYmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI8GaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.externalize.strings" commandName="Externalize Strings" description="Finds all strings that are not externalized and moves them into a separate property file" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI8WaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI8maLEe-_AJixeOhSjw" elementId="org.eclipse.lsp4e.showkindinoutline" commandName="Show Kind in Outline" category="_K_TeYGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI82aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.close" commandName="Close" description="Close the active editor" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI9GaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.try.catch" commandName="Surround with try/catch Block" description="Surround the selected text with a try/catch block" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI9WaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.featureStart" commandName="Start Feature" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI9maLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the compilation unit" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI92aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.Reset" commandName="Reset..." category="_K_TeeGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_XI-GaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.ResetMode" name="Reset mode" optional="false"/>
</commands>
<commands xmi:id="_K_XI-WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.previousSubTab" commandName="Previous Sub-Tab" description="Switch to the previous sub-tab" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI-maLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.generate.hashcode.equals" commandName="Generate hashCode() and equals()" description="Generates hashCode() and equals() methods for the type" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI-2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.showIn" commandName="Show In" category="_K_TeXWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_XI_GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.showIn.targetId" name="Show In Target Id" optional="false"/>
</commands>
<commands xmi:id="_K_XI_WaLEe-_AJixeOhSjw" elementId="sed.tabletree.collapseAll" commandName="Collapse All" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI_maLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewRemoveRemote" commandName="Delete Remote" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XI_2aLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.showInWebBrowser" commandName="Web Browser" description="Show in Web Browser" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJAGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_K_Teb2aLEe-_AJixeOhSjw">
<parameters xmi:id="_K_XJAWaLEe-_AJixeOhSjw" elementId="title" name="Title"/>
<parameters xmi:id="_K_XJAmaLEe-_AJixeOhSjw" elementId="message" name="Message"/>
<parameters xmi:id="_K_XJA2aLEe-_AJixeOhSjw" elementId="initialValue" name="Initial Value"/>
<parameters xmi:id="_K_XJBGaLEe-_AJixeOhSjw" elementId="cancelReturns" name="Return Value on Cancel"/>
</commands>
<commands xmi:id="_K_XJBWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RebaseCurrent" commandName="Rebase" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJBmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJB2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.windowStart" commandName="Select Window Start" description="Select to the start of the window" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJCGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJCWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.project" commandName="Declaration in Project" description="Search for declarations of the selected element in the enclosing project" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJCmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewImportProjects" commandName="Import Projects..." description="Import or create in local Git repository" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJC2aLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.showAllContainers" commandName="&Show all Containers" description="Show all Containers, including non-running ones." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJDGaLEe-_AJixeOhSjw" elementId="org.eclipse.compare.copyAllLeftToRight" commandName="Copy All from Left to Right" description="Copy All Changes from Left to Right" category="_K_TeY2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJDWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJDmaLEe-_AJixeOhSjw" elementId="org.eclipse.search.ui.openFileSearchPage" commandName="File Search" description="Open the Search dialog's file search page" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJD2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.implementors.in.workspace" commandName="Implementors in Workspace" description="Search for implementors of the selected interface" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJEGaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.removeImages" commandName="Re&move " description="Remove the selected images" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJEWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewAddRepository" commandName="Add a Git Repository..." description="Adds an existing Git repository to the Git Repositories view" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJEmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.breakpoint.properties" commandName="Java Breakpoint Properties" description="View and edit the properties for a given Java breakpoint" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJE2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJFGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id Information To Clipboard" description="Copies the build identification information to the clipboard." category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJFWaLEe-_AJixeOhSjw" elementId="org.eclipse.buildship.ui.commands.refreshproject" commandName="Refresh Gradle Project" description="Synchronizes the Gradle builds of the selected projects with the workspace" category="_K_TeWGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJFmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.textEnd" commandName="Select Text End" description="Select to the end of the text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJF2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.wordPrevious" commandName="Previous Word" description="Go to the previous word" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJGGaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.connector.local.command.launch" commandName="Open Local Terminal on Selection" category="_K_TeYmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJGWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.preferences" commandName="Preferences" description="Open the preferences dialog" category="_K_TeZWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_XJGmaLEe-_AJixeOhSjw" elementId="preferencePageId" name="Preference Page"/>
</commands>
<commands xmi:id="_K_XJG2aLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.sourcelookup.ui.openSourceLookupInfoDialog" commandName="Source Lookup Info" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJHGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.commit.Squash" commandName="Squash Commits" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJHWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJHmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.nextView" commandName="Next View" description="Switch to the next view" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJH2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.revertToSaved" commandName="Revert to Saved" description="Revert to the last saved state" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJIGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand" commandName="Properties" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJIWaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJImaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJI2aLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.debug" commandName="Debug OSGi Framework" description="Debug OSGi Framework" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJJGaLEe-_AJixeOhSjw" elementId="org.eclipse.lsp4e.symbolinfile" commandName="Go to Symbol in File" category="_K_TeYGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJJWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.showChangeRulerInformation" commandName="Show Quick Diff Ruler Tooltip" description="Displays quick diff or revision information for the caret line in a focused hover" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJJmaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.removeTag" commandName="&Remove Tag" description="Remove a tag from an Image with multiple tags" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJJ2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.upperCase" commandName="To Upper Case" description="Changes the selection to upper case" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJKGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.ConfigureFetch" commandName="Configure Upstream Fetch" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJKWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into" description="Navigate into the selected item" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJKmaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.OpenRunConfigurations" commandName="Run..." description="Open run launch configuration dialog" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJK2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.windowEnd" commandName="Select Window End" description="Select to the end of the window" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJLGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.minimizePart" commandName="Minimize Active View or Editor" description="Minimizes the active view or editor" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJLWaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.command1" commandName="Terminal view insert" category="_K_TebGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJLmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Untrack" commandName="Untrack" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJL2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.add.block.comment" commandName="Add Block Comment" description="Add Block Comment" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJMGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.showSystemMenu" commandName="Show System Menu" description="Show the system menu" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJMWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.replaceWithDevelop" commandName="Replace with develop branch" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJMmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.commands.AllInstances" commandName="All Instances" description="View all instances of the selected type loaded in the target VM" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJM2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" description="Opens selected commit(s) in Commit Viewer(s)" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJNGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.assignInTryWithResources.assist" commandName="Quick Assist - Assign to variable in new try-with-resources block" description="Invokes quick assist and selects 'Assign to variable in new try-with-resources block'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJNWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJNmaLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.actions.LifeCycleTest.run" commandName="Run Maven Test" description="Run Maven Test" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJN2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.savePerspective" commandName="Save Perspective As" description="Save the current perspective" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJOGaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.removeContainerLog" commandName="Remove Log" description="Remove the console log for the selected container" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJOWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.assignParamToField.assist" commandName="Quick Assist - Assign parameter to field" description="Invokes quick assist and selects 'Assign parameter to field'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XJOmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.command.configureTrace" commandName="Configure Git Debug Trace" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XvwGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.move.inner.to.top.level" commandName="Move Type to New File" description="Move Type to New File" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XvwWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.linkWithEditor" commandName="Toggle Link with Editor" description="Toggles linking of a view's selection with the active editor's selection" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XvwmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.open.file.from.source" commandName="Open Selection" description="Open an editor on the selected link" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xvw2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XvxGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode" commandName="Toggle Block Selection" description="Toggle block / column selection in the current text editor" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XvxWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.goto.matching.bracket" commandName="Matching Character" description="Go to Matching Character" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XvxmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xvx2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.CompareIndexWithHead" commandName="Compare File in Index with HEAD Revision" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XvyGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.override.methods" commandName="Override/Implement Methods" description="Override or implement methods from super types" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XvyWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XvymaLEe-_AJixeOhSjw" elementId="org.eclipse.mylyn.wikitext.ui.convertToDocbookCommand" commandName="Generate Docbook" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xvy2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.part.nextPage" commandName="Next Page" description="Switch to the next page" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XvzGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.change.type" commandName="Generalize Declared Type" description="Change the declaration of a selected variable to a more general type consistent with usage" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XvzWaLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.restart.commands.restart" commandName="Trigger Restart" description="Restart Spring Boot Application" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XvzmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xvz2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewClone" commandName="Clone a Git Repository..." description="Clones a Git repository and adds the clone to the Git Repositories view" category="_K_TecGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_Xv0GaLEe-_AJixeOhSjw" elementId="repositoryUri" name="Repository URI"/>
</commands>
<commands xmi:id="_K_Xv0WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.clear.mark" commandName="Clear Mark" description="Clear the mark" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv0maLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.quick_outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv02aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.add.textblock" commandName="Add Text Block" description="Adds Text Block" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv1GaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewRemove" commandName="Remove Repository" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv1WaLEe-_AJixeOhSjw" elementId="org.eclipse.ant.ui.openExternalDoc" commandName="Open External Documentation" description="Open the External documentation for the current task in the Ant editor" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv1maLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewCreateRepository" commandName="Create a Git Repository..." description="Creates a new Git repository and adds it to the Git Repositories view" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv12aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.featureFinish" commandName="Finish Feature" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv2GaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.hierarchy" commandName="Write Access in Hierarchy" description="Search for write references of the selected element in its hierarchy" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv2WaLEe-_AJixeOhSjw" elementId="org.eclipse.text.quicksearch.commands.quicksearchCommand" commandName="Quick Search" category="_K_TeZGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv2maLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.PushTags" commandName="Push Tags..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv22aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.ContinueRebase" commandName="Continue Rebase" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv3GaLEe-_AJixeOhSjw" elementId="org.eclipse.help.ui.closeTray" commandName="Close User Assistance Tray" description="Close the user assistance tray containing context help information and cheat sheets." category="_K_TeZ2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv3WaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.CreatePatch" commandName="Create Patch..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv3maLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.Resume" commandName="Resume" description="Resume" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv32aLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.restartContainers" commandName="Res&tart" description="Restart selected containers" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv4GaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv4WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.restartWorkbench" commandName="Restart" description="Restart the workbench" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv4maLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.project" commandName="Read Access in Project" description="Search for read references to the selected element in the enclosing project" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv42aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.CompareWithRef" commandName="Compare with Branch, Tag or Reference..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv5GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.toggleOverwrite" commandName="Toggle Overwrite" description="Toggle overwrite mode" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv5WaLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.dash.boot.dash.RestartAction" commandName="(Re)start" description="(Re)start Boot App" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv5maLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv52aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.folding.collapse_all" commandName="Collapse All" description="Collapses all folded regions" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv6GaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.surround.with.try.catch" commandName="Surround with try/catch Block" description="Surround the selected text with a try/catch block" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv6WaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.ToggleWatchpoint" commandName="Toggle Watchpoint" description="Creates or removes a watchpoint" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv6maLEe-_AJixeOhSjw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowRepositoryCatalog" commandName="Show Repository Catalog" category="_K_TeeGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_Xv62aLEe-_AJixeOhSjw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.RepositoryParameter" name="P2 Repository URI"/>
</commands>
<commands xmi:id="_K_Xv7GaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.closeRendering" commandName="Close Rendering" description="Close the selected rendering." category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv7WaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewOpenInEditor" commandName="Open in Editor" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv7maLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.submodule.update" commandName="Update Submodule" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv72aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv8GaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Pull" commandName="Pull" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv8WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.swap.mark" commandName="Swap Mark" description="Swap the mark with the cursor position" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv8maLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv82aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.developCheckout" commandName="Check Out Develop" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv9GaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.javadoc.comment" commandName="Add JSDoc Comment" description="Add a JSDoc comment stub to the member element" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv9WaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureFetch" commandName="Configure Fetch..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv9maLEe-_AJixeOhSjw" elementId="org.eclipse.pde.api.tools.ui.convert.javadocs" commandName="Convert API Tools &Javadoc Tags..." description="Starts a wizard that will allow you to convert existing Javadoc tags to annotations" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv92aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewShowInSystemExplorer" commandName="Show In System Explorer" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv-GaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.open.external.javadoc" commandName="Open Attached Javadoc" description="Open the attached Javadoc of the selected element in a browser" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv-WaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.run" commandName="Run OSGi Framework" description="Run OSGi Framework" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv-maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.shiftLeft" commandName="Shift Left" description="Shift a block of text to the left" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv-2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.structure.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv_GaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Push" commandName="Push..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv_WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.commands.AddClassPrepareBreakpoint" commandName="Add Class Load Breakpoint" description="Add a class load breakpoint" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv_maLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesCreateGroup" commandName="Create a Repository Group" description="Create a repository group for structuring repositories in the Git Repositories view" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xv_2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.generate.javadoc" commandName="Generate JSDoc" description="Generates JSDoc for a selectable set of JavaScript resources" category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwAGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.stash.drop" commandName="Delete Stashed Commit..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwAWaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.DebugPerspective" commandName="Debug" description="Open the debug perspective" category="_K_TecWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwAmaLEe-_AJixeOhSjw" elementId="org.eclipse.tips.ide.command.open" commandName="Tip of the Day" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwA2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.hotfixFinish" commandName="Finish Hotfix" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwBGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.specific_content_assist.command" commandName="Content Assist" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_K_TeVWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_XwBWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.specific_content_assist.category_id" name="type" optional="false"/>
</commands>
<commands xmi:id="_K_XwBmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.hierarchy" commandName="References in Hierarchy" description="Search for references of the selected element in its hierarchy" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwB2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All" description="Expand the current tree" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwCGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.saveAll" commandName="Save All" description="Save all current contents" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwCWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.method.exits" commandName="Search Method Exit Occurrences in File" description="Search for method exit occurrences of a selected return type" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwCmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwC2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwDGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.closeOthers" commandName="Close Others" description="Close all editors except the one that is active" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwDWaLEe-_AJixeOhSjw" elementId="org.eclipse.tm4e.languageconfiguration.togglelinecommentcommand" commandName="Toggle Line Comment" category="_K_TeVGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwDmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.editors.quickdiff.revertLine" commandName="Revert Line" description="Revert the current line" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwD2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.OpenDebugConfigurations" commandName="Debug..." description="Open debug launch configuration dialog" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwEGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.SimpleFetch" commandName="Fetch from Upstream" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwEWaLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.sourcelookup.ui.importBinaryProject" commandName="Import Binary Project" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwEmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.previousEditor" commandName="Previous Editor" description="Switch to the previous editor" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwE2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.copy.qualified.name" commandName="Copy Qualified Name" description="Copy a fully qualified name to the system clipboard" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwFGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.promote.local.variable" commandName="Convert Local Variable to Field" description="Convert a local variable to a field" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwFWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.zoomIn" commandName="Zoom In" description="Zoom in text, increase default font size for text editors" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwFmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ide.OpenMarkersView" commandName="Open Another" description="Open another view" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwF2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.changeToStatic" commandName="Quick Fix - Change to static access" description="Invokes quick assist and selects 'Change to static access'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwGGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.newRendering" commandName="New Rendering" description="Add a new rendering." category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwGWaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.copyfromcontainer" commandName="Copy from Container" description="Copy files from running Container to a local directory" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwGmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.project.closeUnrelatedProjects" commandName="Close Unrelated Projects" description="Close unrelated projects" category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwG2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.self.encapsulate.field" commandName="Encapsulate Field" description="Create getting and setting methods for the field and use only those to access the field" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwHGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ide.markers.copyMarkerResourceQualifiedName" commandName="Copy Resource Qualified Name To Clipboard" description="Copies markers resource qualified name to the clipboard" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwHWaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.run" commandName="Run Eclipse Application" description="Run Eclipse Application" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwHmaLEe-_AJixeOhSjw" elementId="org.eclipse.search.ui.performTextSearchWorkspace" commandName="Find Text in Workspace" description="Searches the files in the workspace for specific text." category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwH2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.remove.block.comment" commandName="Remove Block Comment" description="Remove Block Comment" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwIGaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand" commandName="Plug-in Menu Spy" description="Show the Plug-in Spy" category="_K_TedmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwIWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.generate.constructor.using.fields" commandName="Generate Constructor using Vars" description="Choose vars to initialize and constructor from superclass to call " category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwImaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwI2aLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.core.ui.command.openPom" commandName="Open Maven POM" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwJGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.index.rebuild" commandName="Rebuild Java Index" description="Rebuilds the Java index database" category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwJWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark" description="Add a bookmark" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwJmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xsd.ui.refactor.rename.element" commandName="&Rename XSD element" description="Rename XSD element" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwJ2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.set.mark" commandName="Set Mark" description="Set the mark" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwKGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.splitJoinVariableDeclaration.assist" commandName="Quick Assist - Split/Join variable declaration" description="Invokes quick assist and selects 'Split/Join variable declaration'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwKWaLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.ui.EnableDisableBootDevtools" commandName="Add/Remove Boot Devtools" category="_K_TeVmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwKmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView" commandName="Show View" description="Shows a particular view" category="_K_TeUWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_XwK2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.viewId" name="View"/>
<parameters xmi:id="_K_XwLGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.secondaryId" name="Secondary Id"/>
<parameters xmi:id="_K_XwLWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.views.showView.makeFast" name="As FastView"/>
</commands>
<commands xmi:id="_K_XwLmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Ignore" commandName="Ignore" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwL2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.commit.Edit" commandName="Edit Commit" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwMGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.showResourceByPath" commandName="Show Resource in Navigator" description="Show a resource in the Navigator given its path" category="_K_TeXWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_XwMWaLEe-_AJixeOhSjw" elementId="resourcePath" name="Resource Path" typeId="org.eclipse.ui.ide.resourcePath" optional="false"/>
</commands>
<commands xmi:id="_K_XwMmaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.SkipAllBreakpoints" commandName="Skip All Breakpoints" description="Sets whether or not any breakpoint should suspend execution" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwM2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.delimiter.windows" commandName="Convert Line Delimiters to Windows (CRLF, \r\n, 0D0A, ¤¶)" description="Converts the line delimiters to Windows (CRLF, \r\n, 0D0A, ¤¶)" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwNGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.findNext" commandName="Find Next" description="Find next item" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwNWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.hidetrimbars" commandName="Toggle visibility of the window toolbars" description="Toggle the visibility of the toolbars of the current window" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwNmaLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.commands.editStartersCommand" commandName="Edit Starters" category="_K_TeVmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwN2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.workspace" commandName="Declaration in Workspace" description="Search for declarations of the selected element in the workspace" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwOGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwOWaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.openPluginArtifact" commandName="Open Plug-in Artifact" description="Open a plug-in artifact in the manifest editor" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwOmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.server.debug" commandName="Debug" description="Debug server" category="_K_TeX2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwO2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.nextSubTab" commandName="Next Sub-Tab" description="Switch to the next sub-tab" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwPGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.parameter" commandName="Introduce Parameter" description="Introduce a new method parameter based on the selected expression" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwPWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.run" commandName="Run Java Application" description="Run Java Application" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwPmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.addTask" commandName="Add Task..." description="Add a task" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwP2aLEe-_AJixeOhSjw" elementId="org.eclipse.pde.updateUnitVersions" commandName="Update IU Versions from Repositories" description="Update to latest IU versions" category="_K_Ted2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwQGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.structure.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwQWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.cheatsheets.openCheatSheet" commandName="Open Cheat Sheet" description="Open a Cheat Sheet." category="_K_TeZ2aLEe-_AJixeOhSjw">
<parameters xmi:id="_K_XwQmaLEe-_AJixeOhSjw" elementId="cheatSheetId" name="Identifier"/>
</commands>
<commands xmi:id="_K_XwQ2aLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.showInPropertiesView" commandName="Properties" description="Show in Properties View" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwRGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwRWaLEe-_AJixeOhSjw" elementId="org.eclipse.equinox.p2.ui.sdk.update" commandName="Check for Updates" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwRmaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.searchTargetRepositories" commandName="Add Artifact to Target Platform" description="Add an artifact to your target platform" category="_K_TeeGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_XwR2aLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.searchTargetRepositories.term" name="The initial search pattern for the artifact search dialog"/>
</commands>
<commands xmi:id="_K_XwSGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.textEnd" commandName="Text End" description="Go to the end of the text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwSWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwSmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwS2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.project.closeProject" commandName="Close Project" description="Close the selected project" category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwTGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.PullWithOptions" commandName="Pull..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwTWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwTmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.server.publish" commandName="Publish" description="Publish to server" category="_K_TeX2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwT2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.factory" commandName="Introduce Factory" description="Introduce a factory method to encapsulate invocation of the selected constructor" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwUGaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.updateClasspath" commandName="Update Classpath" description="Updates the plug-in classpath from latest settings" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwUWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.use.supertype" commandName="Use Supertype Where Possible" description="Change occurrences of a type to use a supertype instead" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwUmaLEe-_AJixeOhSjw" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwU2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.structure.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwVGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.cut.line" commandName="Cut Line" description="Cut a line of text, or multiple lines when invoked again without interruption" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwVWaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.view.ui.command.launch" commandName="Open Terminal on Selection" category="_K_TeYmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwVmaLEe-_AJixeOhSjw" elementId="org.springsource.ide.eclipse.commons.ui.stop" commandName="Stop Application" description="Stop last launched application" category="_K_TeamaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwV2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.folding.expand_all" commandName="Expand All" description="Expands all folded regions" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwWGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xsd.ui.refactor.makeElementGlobal" commandName="Make Local Element &Global" description="Promotes local element to global level and replaces its references" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwWWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.encapsulateField.assist" commandName="Quick Assist - Create getter/setter for field" description="Invokes quick assist and selects 'Create getter/setter for field'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwWmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.help.quickStartAction" commandName="Welcome" description="Show help for beginning users" category="_K_TeZ2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwW2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.ReplaceWithPrevious" commandName="Replace with Previous Revision" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwXGaLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.sourcelookup.ui.openPom" commandName="Open Pom" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwXWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.hideShowEditors" commandName="Toggle Shared Area Visibility" description="Toggles the visibility of the shared area" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwXmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.folding.restore" commandName="Reset Structure" description="Resets the folding structure" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwX2aLEe-_AJixeOhSjw" elementId="org.eclipse.help.ui.indexcommand" commandName="Index" description="Show Keyword Index" category="_K_TeZ2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwYGaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.removeConnection" commandName="&Remove" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwYWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwYmaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.api.tools.ui.setup.projects" commandName="API &Tools Setup..." description="Configure projects for API usage and compatibility checks" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwY2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.debug" commandName="Debug Java Application" description="Debug Java Application" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwZGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.forward" commandName="Forward" description="Navigate forward" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwZWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.CherryPick" commandName="Cherry Pick" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwZmaLEe-_AJixeOhSjw" elementId="org.eclipse.buildship.ui.commands.openbuildscript" commandName="Open Gradle Build Script" description="Opens the Gradle build script for the selected Gradle project" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwZ2aLEe-_AJixeOhSjw" elementId="org.eclipse.buildship.ui.commands.openrunconfiguration" commandName="Open Gradle Run Configuration" description="Opens the Run Configuration for the selected Gradle tasks" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwaGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.DeleteTag" commandName="&Delete Tag" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwaWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwamaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor" description="Pin the current editor" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xwa2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.pageUp" commandName="Page Up" description="Go up one page" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwbGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.submodule.sync" commandName="Sync Submodule" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwbWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.DeleteBranch" commandName="Delete Branch" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwbmaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.copy" commandName="Copy" category="_K_TebGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xwb2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.columnPrevious" commandName="Previous Column" description="Go to the previous column" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwcGaLEe-_AJixeOhSjw" elementId="org.eclipse.compare.selectNextChange" commandName="Select Next Change" description="Select Next Change" category="_K_TeY2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwcWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.ui.generate.xml" commandName="XML File..." description="Generate a XML file from the selected DTD or Schema" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwcmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.splitJoinVariableDeclaration.assist" commandName="Quick Assist - Split/Join variable declaration" description="Invokes quick assist and selects 'Split/Join variable declaration'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xwc2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.assignParamToField.assist" commandName="Quick Assist - Assign parameter to var" description="Invokes quick assist and selects 'Assign parameter to var'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwdGaLEe-_AJixeOhSjw" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource" commandName="Rename Resource" description="Rename the selected resource and notify LTK participants." category="_K_TecmaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_XwdWaLEe-_AJixeOhSjw" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource.newName.parameter.key" name="Selected resource's new name."/>
</commands>
<commands xmi:id="_K_XwdmaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.importFromRepository" commandName="Import Plug-in from a Repository" description="Imports a plug-in from a source repository" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xwd2aLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.dash.boot.dash.StopAction" commandName="Stop" description="Stop Boot App" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XweGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Rebase" commandName="Rebase on" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XweWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.properties" commandName="Properties" description="Display the properties of the selected item" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwemaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.copy.qualified.name" commandName="Copy Qualified Name" description="Copy a fully qualified name to the system clipboard" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xwe2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.ReplaceWithHead" commandName="Replace with HEAD revision" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwfGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwfWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.hierarchy" commandName="References in Hierarchy" description="Search for references of the selected element in its hierarchy" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwfmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.activeContextInfo" commandName="Show activeContext Info" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xwf2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwgGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.extract.constant" commandName="Extract Constant" description="Extracts a constant into a new static field and uses the new static field" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwgWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.textStart" commandName="Select Text Start" description="Select to the beginning of the text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwgmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.cleanup.document" commandName="Cleanup Document..." description="Cleanup document" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xwg2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.releaseFinish" commandName="Finish Release" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwhGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.ConfigurePush" commandName="Configure Upstream Push" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwhWaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.command.nextpage" commandName="Next Page of Memory" description="Load next page of memory" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwhmaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.command.gotoaddress" commandName="Go to Address" description="Go to Address" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_Xwh2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.hotfixStart" commandName="Start Hotfix" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwiGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.maximizePart" commandName="Maximize Active View or Editor" description="Toggles maximize/restore state of active view or editor" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwiWaLEe-_AJixeOhSjw" elementId="dev.dietermai.projectselect.command.dialog.open" commandName="Open Project Select Dialog" description="Opens the project select dialog" category="_K_TeU2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_XwimaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify field access" description="Invokes quick assist and selects 'Qualify field access'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW0GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.newEditor" commandName="Clone Editor" description="Open another editor on the active editor's input" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW0WaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.format" commandName="Format" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW0maLEe-_AJixeOhSjw" elementId="org.eclipse.search.ui.openSearchDialog" commandName="Open Search Dialog" description="Open the Search dialog" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW02aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.contentAssist.proposals" commandName="Content Assist" description="Content Assist" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW1GaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.externalize.strings" commandName="Externalize Strings" description="Finds all strings that are not externalized and moves them into a separate property file" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW1WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.up" commandName="Up" description="Navigate up one level" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW1maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.activateEditor" commandName="Activate Editor" description="Activate the editor" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW12aLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.core.ui.command.addPlugin" commandName="Add Maven Plugin" description="Add Maven plugin" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW2GaLEe-_AJixeOhSjw" elementId="sed.tabletree.expandAll" commandName="Expand All" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW2WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.modify.method.parameters" commandName="Change Method Signature" description="Change method signature includes parameter names and parameter order" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW2maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.delete.line.to.end" commandName="Delete to End of Line" description="Delete to the end of a line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW22aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.extractLocal.assist" commandName="Quick Assist - Extract local variable (replace all occurrences)" description="Invokes quick assist and selects 'Extract local variable (replace all occurrences)'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW3GaLEe-_AJixeOhSjw" elementId="org.springsource.ide.eclipse.commons.ui.relaunch" commandName="Relaunch Application" description="Relaunch last launched application" category="_K_TeamaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW3WaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.Terminate" commandName="Terminate" description="Terminate" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW3maLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.ShowRepositoriesView" commandName="Show Git Repositories View" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW32aLEe-_AJixeOhSjw" elementId="org.eclipse.help.ui.ignoreMissingPlaceholders" commandName="Do not warn of missing documentation" description="Sets the help preferences to no longer report a warning about the current set of missing documents." category="_K_TeZ2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW4GaLEe-_AJixeOhSjw" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_K_TeY2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW4WaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.external.javadoc" commandName="Open External JSDoc" description="Open the JSDoc of the selected element in an external browser" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW4maLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.showAllImages" commandName="&Show all Images" description="Show all Images, including intermediate images." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW42aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.CreatePatch" commandName="Create Patch..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW5GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.editors.revisions.author.toggle" commandName="Toggle Revision Author Display" description="Toggles the display of the revision author" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW5WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.windowEnd" commandName="Window End" description="Go to the end of the window" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW5maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.perspectives.showPerspective" commandName="Show Perspective" description="Show a particular perspective" category="_K_TecWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_YW52aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId" name="Parameter"/>
<parameters xmi:id="_K_YW6GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.perspectives.showPerspective.newWindow" name="In New Window"/>
</commands>
<commands xmi:id="_K_YW6WaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.line" commandName="Go to Line" description="Go to a specified line of text" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW6maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.editors.quickdiff.revert" commandName="Revert Lines" description="Revert the current selection, block or deleted lines" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW62aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implement.occurrences" commandName="Search Implement Occurrences in File" description="Search for implement occurrences of a selected type" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW7GaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.debug" commandName="Debug Java Applet" description="Debug Java Applet" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW7WaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.ui.gotoMatchingTag" commandName="Matching Tag" description="Go to Matching Tag" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW7maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW72aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.submodule.add" commandName="Add Submodule" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW8GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.cut.line.to.end" commandName="Cut to End of Line" description="Cut to the end of a line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW8WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.convertAnonymousToLocal.assist" commandName="Quick Assist - Convert anonymous to local class" description="Invokes quick assist and selects 'Convert anonymous to local class'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW8maLEe-_AJixeOhSjw" elementId="org.eclipse.compare.copyLeftToRight" commandName="Copy from Left to Right" description="Copy Current Change from Left to Right" category="_K_TeY2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW82aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW9GaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.ShowBlame" commandName="Show Revision Information" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW9WaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW9maLEe-_AJixeOhSjw" elementId="org.eclipse.tips.ide.command.trim.open" commandName="Tip of the Day" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW92aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.write.access.in.project" commandName="Write Access in Project" description="Search for write references to the selected element in the enclosing project" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW-GaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.project.properties" commandName="Properties" description="Display the properties of the selected item's project " category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW-WaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.CompareVersionsInTree" commandName="Compare in Tree" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW-maLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.columnPrevious" commandName="Select Previous Column" description="Select the previous column" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW-2aLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.debug" commandName="Debug JUnit Plug-in Test" description="Debug JUnit Plug-in Test" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW_GaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.extractLocalNotReplaceOccurrences.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW_WaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchHierarchy" commandName="Toggle Branch Representation" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW_maLEe-_AJixeOhSjw" elementId="org.eclipse.ltk.ui.refactoring.commands.deleteResources" commandName="Delete Resources" description="Delete the selected resources and notify LTK participants." category="_K_TecmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YW_2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.file.print" commandName="Print" description="Print" category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXAGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.commands.AllReferences" commandName="All References" description="Inspect all references to the selected object" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXAWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.junit.junitShortcut.rerunLast" commandName="Rerun JUnit Test" description="Rerun JUnit Test" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXAmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.format.active.elements" commandName="Format Active Elements" description="Format active elements" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXA2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.showRulerContextMenu" commandName="Show Ruler Context Menu" description="Show the context menu for the ruler" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXBGaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.showInSystemExplorer" commandName="System Explorer" description="%command.showInSystemExplorer.menu.description" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXBWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.working.set" commandName="References in Working Set" description="Search for references to the selected element in a working set" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXBmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.folding.collapse" commandName="Collapse" description="Collapses the folded region at the current selection" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXB2aLEe-_AJixeOhSjw" elementId="org.eclipse.epp.mpc.ui.command.showFavorites" commandName="Eclipse Marketplace Favorites" description="Open Marketplace Favorites" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXCGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.smartEnterInverse" commandName="Insert Line Above Current Line" description="Adds a new line above the current line" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXCWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.spy" commandName="Show Contributing Plug-in" description="Shows contribution information for the currently selected element" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXCmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.help.helpSearch" commandName="Help Search" description="Open the help search" category="_K_TeZ2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXC2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.infer.type.arguments" commandName="Infer Generic Type Arguments" description="Infer type arguments for references to generic classes and remove unnecessary casts" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXDGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.featureTrack" commandName="Track Feature" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXDWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.lineDown" commandName="Line Down" description="Go down one line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXDmaLEe-_AJixeOhSjw" elementId="org.eclipse.m2e.actions.LifeCycleClean.run" commandName="Run Maven Clean" description="Run Maven Clean" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXD2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition" commandName="Previous Edit Location" description="Previous edit location" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXEGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.open.hyperlink" commandName="Open Hyperlink" description="Opens the hyperlink at the caret location or opens a chooser if more than one hyperlink is available" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXEWaLEe-_AJixeOhSjw" elementId="org.eclipse.mylyn.wikitext.ui.convertToEclipseHelpCommand" commandName="Generate Eclipse Help (*.html and *-toc.xml)" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXEmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.exception.occurrences" commandName="Search Exception Occurrences in File" description="Search for exception occurrences of a selected exception type" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXE2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.command.prevpage" commandName="Previous Page of Memory" description="Load previous page of memory" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXFGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.commands.ForceReturn" commandName="Force Return" description="Forces return from method with value of selected expression " category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXFWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ide.configureFilters" commandName="Filters..." description="Configure the filters to apply to the markers view" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXFmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.previousTab" commandName="Previous Tab" description="Switch to the previous tab" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXF2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.hierarchy" commandName="Declaration in Hierarchy" description="Search for declarations of the selected element in its hierarchy" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXGGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.dialogs.openMessageDialog" commandName="Open Message Dialog" description="Open a Message Dialog" category="_K_Teb2aLEe-_AJixeOhSjw">
<parameters xmi:id="_K_YXGWaLEe-_AJixeOhSjw" elementId="title" name="Title"/>
<parameters xmi:id="_K_YXGmaLEe-_AJixeOhSjw" elementId="message" name="Message"/>
<parameters xmi:id="_K_YXG2aLEe-_AJixeOhSjw" elementId="imageType" name="Image Type Constant" typeId="org.eclipse.ui.dialogs.Integer"/>
<parameters xmi:id="_K_YXHGaLEe-_AJixeOhSjw" elementId="defaultIndex" name="Default Button Index" typeId="org.eclipse.ui.dialogs.Integer"/>
<parameters xmi:id="_K_YXHWaLEe-_AJixeOhSjw" elementId="buttonLabel0" name="First Button Label"/>
<parameters xmi:id="_K_YXHmaLEe-_AJixeOhSjw" elementId="buttonLabel1" name="Second Button Label"/>
<parameters xmi:id="_K_YXH2aLEe-_AJixeOhSjw" elementId="buttonLabel2" name="Third Button Label"/>
<parameters xmi:id="_K_YXIGaLEe-_AJixeOhSjw" elementId="buttonLabel3" name="Fourth Button Label"/>
<parameters xmi:id="_K_YXIWaLEe-_AJixeOhSjw" elementId="cancelReturns" name="Return Value on Cancel"/>
</commands>
<commands xmi:id="_K_YXImaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.genericeditor.findReferences" commandName="Find References" description="Find other code items referencing the current selected item." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXI2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.lineEnd" commandName="Line End" description="Go to the end of the line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXJGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.ui.referencedFileErrors" commandName="Show Details..." description="Show Details..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXJWaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.RunLast" commandName="Run" description="Launch in run mode" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXJmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.externalTools.commands.OpenExternalToolsConfigurations" commandName="External Tools..." description="Open external tools launch configuration dialog" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXJ2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.command.OpenFromClipboard" commandName="Open from Clipboard" description="Opens a Java element or a Java stack trace from clipboard" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXKGaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.internationalize" commandName="Internationalize Plug-ins" description="Sets up internationalization for a plug-in" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXKWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.deletePrevious" commandName="Delete Previous" description="Delete the previous character" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXKmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.CompareWithPrevious" commandName="Compare with Previous Revision" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXK2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.select.columnNext" commandName="Select Next Column" description="Select the next column" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXLGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.read.access.in.workspace" commandName="Read Access in Workspace" description="Search for read references to the selected element in the workspace" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXLWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.workspace" commandName="Implementors in Workspace" description="Search for implementors of the selected interface" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXLmaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.TerminateAndRelaunch" commandName="Terminate and Relaunch" description="Terminate and Relaunch" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXL2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.JavaHierarchyPerspective" commandName="Java Type Hierarchy" description="Show the Java Type Hierarchy perspective" category="_K_TecWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXMGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.project" commandName="Declaration in Project" description="Search for declarations of the selected element in the enclosing project" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXMWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.try.multicatch" commandName="Surround with try/multi-catch Block" description="Surround the selected text with a try/multi-catch block" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXMmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Tag" commandName="Create Tag..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXM2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.NoAssumeUnchanged" commandName="No Assume Unchanged" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXNGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.RemoveAllBreakpoints" commandName="Remove All Breakpoints" description="Removes all breakpoints" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXNWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigator.resources.nested.changeProjectPresentation" commandName="P&rojects Presentation" category="_K_TeeGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_YXNmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigator.resources.nested.enabled" name="&Hierarchical"/>
<parameters xmi:id="_K_YXN2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.commands.radioStateParameter" name="Nested Project view - Radio State" optional="false"/>
</commands>
<commands xmi:id="_K_YXOGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.showKeyAssist" commandName="Show Key Assist" description="Show the key assist dialog" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXOWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.genericeditor.togglehighlight" commandName="Toggle Highlight" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXOmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.parameter.object" commandName="Introduce Parameter Object" description="Introduce a parameter object to a selected method" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXO2aLEe-_AJixeOhSjw" elementId="org.dadacoalition.yedit.command.formatDocument" commandName="Format" description="Format the document according to format preferences" category="_K_TeW2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXPGaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.stopContainers" commandName="&Stop" description="Stop the selected containers" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXPWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.commands.openElementInEditor" commandName="Open Java Element" description="Open a Java element in its editor" category="_K_TeXWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_YXPmaLEe-_AJixeOhSjw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_K_YXP2aLEe-_AJixeOhSjw" elementId="org.eclipse.gef.zoom_out" commandName="Zoom Out" description="Zoom Out" category="_K_TedGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXQGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected JavaScript comment lines" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXQWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.AddToIndex" commandName="Add to Index" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXQmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.working.set" commandName="Read Access in Working Set" description="Search for read references to the selected element in a working set" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXQ2aLEe-_AJixeOhSjw" elementId="org.eclipse.buildship.ui.commands.refreshtaskview" commandName="Refresh View (Gradle Tasks)" description="Refreshes the Gradle Tasks view" category="_K_TeUWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXRGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.toggle.comment" commandName="Toggle Comment" description="Toggle Comment" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXRWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_K_TeZ2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXRmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXR2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.smartEnter" commandName="Insert Line Below Current Line" description="Adds a new line below the current line" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXSGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.goto.lineStart" commandName="Line Start" description="Go to the start of the line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXSWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xml.ui.cmnd.contentmodel.sych" commandName="Synch" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXSmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureBranch" commandName="Configure Branch" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXS2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.Suspend" commandName="Suspend" description="Suspend" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXTGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.hippieCompletion" commandName="Word Completion" description="Context insensitive completion" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXTWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.xsd.ui.refactor.renameTargetNamespace" commandName="Rename Target Namespace" description="Changes the target namespace of the schema" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXTmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXT2aLEe-_AJixeOhSjw" elementId="org.eclipse.team.ui.synchronizeLast" commandName="Repeat last synchronization" description="Repeat the last synchronization" category="_K_TeUGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXUGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.generate.javadoc" commandName="Generate Javadoc" description="Generates Javadoc for a selectable set of Java resources" category="_K_TeaWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXUWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureGerritRemote" commandName="Gerrit Configuration..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXUmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.commands.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXU2aLEe-_AJixeOhSjw" elementId="org.eclipse.buildship.ui.shortcut.test.run" commandName="Run Gradle Test" description="Run Gradle test based on the current selection" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXVGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ide.configureColumns" commandName="Configure Columns..." description="Configure the columns in the markers view" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXVWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.ReplaceWithCommit" commandName="Replace with commit" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXVmaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.quickaccess" commandName="Quick Access" category="_K_TebGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXV2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.DebugLast" commandName="Debug" description="Launch in debug mode" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXWGaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.filterContainersWithLabels" commandName="Filter by &Labels" description="Show containers that have specified labels." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXWWaLEe-_AJixeOhSjw" elementId="org.eclipse.mylyn.wikitext.ui.convertToHtmlCommand" commandName="Generate HTML" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXWmaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.openManifest" commandName="Open Manifest" description="Open the plug-in manifest" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXW2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.previousView" commandName="Previous View" description="Switch to the previous view" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXXGaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.enableConnection" commandName="&Enable Connection" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXXWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.generate.tostring" commandName="Generate toString()" description="Generates the toString() method for the type" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXXmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXX2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ide.markers.copyDescription" commandName="Copy Description To Clipboard" description="Copies markers description field to the clipboard" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXYGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.DropToFrame" commandName="Drop to Frame" description="Drop to Frame" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXYWaLEe-_AJixeOhSjw" elementId="org.springsource.ide.eclipse.boot.BootLaunchShortcut.debug" commandName="Debug Spring Boot App" description="Debug Spring Boot App" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXYmaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.api.tools.ui.compare.to.baseline" commandName="API Baseline..." description="Allows to compare the selected resource with the current baseline" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXY2aLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.imagebrowser.saveToWorkspace" commandName="Save Image" description="Save the selected image into a project in the workspace" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXZGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.debug.ui.commands.Display" commandName="Display" description="Display result of evaluating selected text" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXZWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.exception.occurrences" commandName="Search Exception Occurrences in File" description="Search for exception occurrences of a selected exception type" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXZmaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.view.ui.command.disconnect" commandName="Disconnect Terminal" category="_K_TeYmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXZ2aLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.dash.boot.dash.RedebugAction" commandName="(Re)debug" description="(Re)debug Boot App" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXaGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.ShowBlame" commandName="Show Revision Information" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXaWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to field" description="Invokes quick assist and selects 'Assign to field'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXamaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.folding.expand" commandName="Expand" description="Expands the folded region at the current selection" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXa2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.extract.method" commandName="Extract Method" description="Extract a set of statements or an expression into a new method and use the new method" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXbGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.nextMemoryBlock" commandName="Next Memory Monitor" description="Show renderings from next memory monitor." category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXbWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.CompareWithEachOther" commandName="Compare with Each Other" description="Compare two files selected in the Compare Editor with each other." category="_K_TeY2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXbmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.internal.reflog.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXb2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.Fetch" commandName="Fetch" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXcGaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.run" commandName="Run JUnit Plug-in Test" description="Run JUnit Plug-in Test" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXcWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.navigate.gotopackage" commandName="Go to Package" description="Go to Package" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXcmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.togglestatusbar" commandName="Toggle Statusbar" description="Toggle the visibility of the bottom status bar" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXc2aLEe-_AJixeOhSjw" elementId="org.eclipse.buildship.ui.commands.addbuildshipnature" commandName="Add Gradle Nature" description="Adds the Gradle nature and synchronizes this project as if the Gradle Import wizard had been run on its location." category="_K_TeWGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXdGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.eof" commandName="EOF" description="Send end of file" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXdWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.AbortRebase" commandName="Abort Rebase" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXdmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.showInQuickMenu" commandName="Show In..." description="Open the Show In menu" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXd2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.copyLineUp" commandName="Duplicate Lines" description="Duplicates the selected lines and leaves the selection unchanged" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXeGaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint" commandName="Toggle Method Breakpoint" description="Creates or removes a method breakpoint" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXeWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXemaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.unpauseContainers" commandName="&Unpause" description="Unpause the selected containers" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXe2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.assignToLocal.assist" commandName="Quick Assist - Assign to local variable" description="Invokes quick assist and selects 'Assign to local variable'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXfGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.next" commandName="Next" description="Navigate to the next item" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXfWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.server.run" commandName="Run" description="Run server" category="_K_TeX2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXfmaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.StepReturn" commandName="Step Return" description="Step return" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXf2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_K_TeZWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_YXgGaLEe-_AJixeOhSjw" elementId="plugin" name="Plugin"/>
<parameters xmi:id="_K_YXgWaLEe-_AJixeOhSjw" elementId="path" name="Path"/>
</commands>
<commands xmi:id="_K_YXgmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.help.aboutAction" commandName="About" description="Open the about dialog" category="_K_TeZ2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXg2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.common.project.facet.ui.ConvertProjectToFacetedForm" commandName="Convert to Faceted Form..." category="_K_TeYWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXhGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.annotate.classFile" commandName="Annotate Class File" description="Externally add Annotations to a Class File." category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXhWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.stash.create" commandName="Stash Changes..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXhmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXh2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.format.document" commandName="Format" description="Format selection" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXiGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.addNonNLS" commandName="Quick Fix - Add non-NLS tag" description="Invokes quick assist and selects 'Add non-NLS tag'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXiWaLEe-_AJixeOhSjw" elementId="org.sonatype.m2e.egit.CloneAsMavenProjects" commandName="Clone Maven Projects..." category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXimaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.workspace" commandName="Write Access in Workspace" description="Search for write references to the selected element in the workspace" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXi2aLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.team.RemoveFromIndex" commandName="Remove from Index" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXjGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.newWizard" commandName="New" description="Open the New item wizard" category="_K_TeYWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_YXjWaLEe-_AJixeOhSjw" elementId="newWizardId" name="New Wizard"/>
</commands>
<commands xmi:id="_K_YXjmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.newWindow" commandName="New Window" description="Open another window" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXj2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected Java comment lines" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXkGaLEe-_AJixeOhSjw" elementId="org.eclipse.e4.ui.importer.configureProject" commandName="Configure and Detect Nested Projects..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXkWaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.history.CompareVersions" commandName="Compare with Each Other" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXkmaLEe-_AJixeOhSjw" elementId="org.eclipse.equinox.p2.ui.sdk.install" commandName="Install New Software..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXk2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.window.customizePerspective" commandName="Customize Perspective" description="Customize the current perspective" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXlGaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.killContainers" commandName="&Kill" description="Kill the selected containers" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXlWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar" commandName="Run Last Launched External Tool" description="Runs the last launched external Tool" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXlmaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.CheckoutCommand" commandName="Check Out" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXl2aLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.search.occurrences.in.file" commandName="Search All Occurrences in File" description="Search for all occurrences of the selected element in its declaring file" category="_K_TebWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXmGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.moveLineUp" commandName="Move Lines Up" description="Moves the selected lines up" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXmWaLEe-_AJixeOhSjw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog" commandName="Show Bundle Catalog" category="_K_TeeGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_YXmmaLEe-_AJixeOhSjw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.DirectoryParameter" name="Directory URL"/>
<parameters xmi:id="_K_YXm2aLEe-_AJixeOhSjw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.TagsParameter" name="Tags"/>
</commands>
<commands xmi:id="_K_YXnGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.gotoBreadcrumb" commandName="Show In Breadcrumb" description="Shows the Java editor breadcrumb and sets the keyboard focus into it" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXnWaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.debug" commandName="Debug Eclipse Application" description="Debug Eclipse Application" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXnmaLEe-_AJixeOhSjw" elementId="org.eclipse.userstorage.ui.showPullDown" commandName="Show Pull Down Menu" category="_K_TeZ2aLEe-_AJixeOhSjw">
<parameters xmi:id="_K_YXn2aLEe-_AJixeOhSjw" elementId="intoolbar" name="In Tool Bar" optional="false"/>
</commands>
<commands xmi:id="_K_YXoGaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.edit.text.java.extract.class" commandName="Extract Class..." description="Extracts fields into a new class" category="_K_TeZmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXoWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_K_TedWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXomaLEe-_AJixeOhSjw" elementId="org.eclipse.compare.copyRightToLeft" commandName="Copy from Right to Left" description="Copy Current Change from Right to Left" category="_K_TeY2aLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXo2aLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.commands.OpenProfileConfigurations" commandName="Profile..." description="Open profile launch configuration dialog" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXpGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.gitflow.ui.command.featureRebase" commandName="Rebase Feature" category="_K_TecGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXpWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ide.markCompleted" commandName="Mark Completed" description="Mark the selected tasks as completed" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXpmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into JavaScript comments" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXp2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.recenter" commandName="Recenter" description="Scroll cursor line to center, top and bottom" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXqGaLEe-_AJixeOhSjw" elementId="org.eclipse.linuxtools.docker.ui.commands.refreshExplorerView" commandName="&Refresh" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXqWaLEe-_AJixeOhSjw" elementId="org.springsource.ide.eclipse.boot.BootLaunchShortcut.run" commandName="Run Spring Boot App" description="Run Spring Boot App" category="_K_TebmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXqmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.edit.text.scroll.lineDown" commandName="Scroll Line Down" description="Scroll down one line of text" category="_K_TeWmaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXq2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.search.find.occurrences" commandName="Occurrences in File" description="Find occurrences of the selection in the file" category="_K_TeVWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXrGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Main Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_K_TeZWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXrWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.sse.ui.outline.customFilter" commandName="&Filters" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXrmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXr2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_K_TeXWaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_YXsGaLEe-_AJixeOhSjw" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/>
</commands>
<commands xmi:id="_K_YXsWaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.correction.addBlock.assist" commandName="Quick Assist - Replace statement with block" description="Invokes quick assist and selects 'Replace statement with block'" category="_K_TeXGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXsmaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the JavaScript file" category="_K_TeXWaLEe-_AJixeOhSjw"/>
<commands xmi:id="_K_YXs2aLEe-_AJixeOhSjw" elementId="org.springframework.tooling.ls.eclipse.commons.commands.OpenJavaElementInEditor" commandName="Open Java Element in Editor" category="_K_TeeGaLEe-_AJixeOhSjw">
<parameters xmi:id="_K_YXtGaLEe-_AJixeOhSjw" elementId="bindingKey" name="bindingKey" optional="false"/>
<parameters xmi:id="_K_YXtWaLEe-_AJixeOhSjw" elementId="projectName" name="projectName" optional="false"/>
</commands>
<commands xmi:id="_LKbwQGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.ant.ui.actionSet.presentation/org.eclipse.ant.ui.toggleAutoReconcile" commandName="Toggle Ant Editor Auto Reconcile" description="Toggle Ant Editor Auto Reconcile" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKc-YGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunWithConfigurationAction" commandName="Run As" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKc-YWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunHistoryMenuAction" commandName="Run History" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKc-YmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunDropDownAction" commandName="Run" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKc-Y2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugWithConfigurationAction" commandName="Debug As" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKc-ZGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugHistoryMenuAction" commandName="Debug History" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKc-ZWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugDropDownAction" commandName="Debug" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKdlcGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileDropDownAction" commandName="Profile" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKdlcWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileWithConfigurationAction" commandName="Profile As" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKdlcmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileHistoryMenuAction" commandName="Profile History" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKdlc2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.egit.ui.SearchActionSet/org.eclipse.egit.ui.actions.OpenCommitSearchPage" commandName="Git..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKfaoGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.NewTypeDropDown" commandName="Class..." description="New Java Class" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKfaoWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenPackageWizard" commandName="Package..." description="New Java Package" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKfaomaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenProjectWizard" commandName="Java Project..." description="New Java Project" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKgBsGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.ui.SearchActionSet/org.eclipse.jdt.ui.actions.OpenJavaSearchPage" commandName="Java..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKgBsWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.linuxtools.docker.launchActionSet/org.eclipse.debug.internal.ui.actions.RunWithConfigurationAction" commandName="Run As" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKgBsmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.linuxtools.docker.launchActionSet/org.eclipse.debug.internal.ui.actions.RunHistoryMenuAction" commandName="Run History" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKgowGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.linuxtools.docker.launchActionSet/org.eclipse.debug.internal.ui.actions.RunDropDownAction" commandName="Run" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKgowWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.pde.ui.SearchActionSet/org.eclipse.pde.ui.actions.OpenPluginSearchPage" commandName="Plug-in..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKgowmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.ui.cheatsheets.actionSet/org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction" commandName="Cheat Sheets..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKgow2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.search.searchActionSet/org.eclipse.search.OpenSearchDialogPage" commandName="Search..." description="Search" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKgoxGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKgoxWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.ConfigureProject" commandName="Share Project..." description="Share the project with others using a version and configuration management system." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKhP0GaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.ui.externaltools.ExternalToolsSet/org.eclipse.ui.externaltools.ExternalToolMenuDelegateMenu" commandName="External Tools" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKhP0WaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.server.ui.new.actionSet/org.eclipse.wst.server.ui.action.new.server" commandName="Create Server" description="Create Server" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKhP0maLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.server.ui.internal.webbrowser.actionSet/org.eclipse.wst.server.ui.internal.webbrowser.action.open" commandName="Open Web Browser" description="Open Web Browser" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKhP02aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.server.ui.internal.webbrowser.actionSet/org.eclipse.wst.server.ui.internal.webbrowser.action.switch" commandName="Web Browser" description="Web Browser" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKhP1GaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.springsource.ide.eclipse.commons.launch.actionSet/org.springsource.ide.eclipse.commons.launch.relaunch.action" commandName="Relaunch" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKh24GaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.springsource.ide.eclipse.commons.launch.actionSet/org.springsource.ide.eclipse.commons.launch.stop.action" commandName="Terminate" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKh24WaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newCSSFile" commandName="CSS" description="Create a new Cascading Style Sheet" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKh24maLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newJSFile" commandName="JavaScript" description="Create a new JavaScript file" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKh242aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newHTMLFile" commandName="HTML" description="Create a new HTML page" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKh25GaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.ant.ui.BreakpointRulerActions/org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKh25WaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.CompilationUnitEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKh25maLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.CompilationUnitEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.RunToLineRulerActionDelegate" commandName="Run to Line" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKid8GaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ClassFileEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKid8WaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ClassFileEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.RunToLineRulerActionDelegate" commandName="Run to Line" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKid8maLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetExecute" commandName="Execute" description="Execute the Selected Text" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKid82aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetDisplay" commandName="Display" description="Display Result of Evaluating Selected Text" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKid9GaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetInspect" commandName="Inspect" description="Inspect Result of Evaluating Selected Text" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjFAGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjFAWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjFAmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjFA2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjFBGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjFBWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.lsp4e.debug.textEditor.rulerActions/org.eclipse.lsp4e.debug.textEditor.doubleClickBreakpointAction" commandName="unusedlabel" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjFBmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.lsp4e.debug.genericEditor.rulerActions/org.eclipse.lsp4e.debug.genericEditor.doubleClickBreakpointAction" commandName="unusedlabel" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjFB2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.m2e.jdt.ui.downloadSourcesContribution/org.eclipse.m2e.jdt.ui.downloadSourcesAction" commandName="label" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjsEGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.m2e.jdt.ui.downloadSourcesContribution_38/org.eclipse.m2e.jdt.ui.downloadSourcesAction_38" commandName="label" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjsEWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Text Editor Bookmark Ruler Action" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjsEmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Text Editor Ruler Single-Click" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjsE2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjsFGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjsFWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjsFmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKjsF2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKkTIGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKkTIWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKkTImaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKkTI2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="JavaScript Editor Bookmark Ruler Action" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKkTJGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="JavaScript Editor Ruler Single-Click" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKkTJWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="JavaScript Editor Ruler Single-Click" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKkTJmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="JavaScript Editor Bookmark Ruler Action" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKkTJ2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="JavaScript Editor Ruler Single-Click" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKkTKGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="%AddBookmark.label" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKkTKWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="%SelectRuler.label" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKkTKmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKkTK2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKk6MGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.PulldownActions/org.eclipse.debug.ui.debugview.pulldown.ViewManagementAction" commandName="View Management..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKk6MWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.debugview.toolbar/org.eclipse.debug.ui.debugview.toolbar.removeAllTerminated" commandName="Remove All Terminated" description="Remove All Terminated Launches" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKk6MmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.debugview.toolbar/org.eclipse.debug.ui.debugview.toolbar.collapseAll" commandName="Collapse All" description="Collapse All" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKk6M2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.removeAll" commandName="Remove All" description="Remove All Breakpoints" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKk6NGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.linkWithDebugView" commandName="Link with Debug View" description="Link with Debug View" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKk6NWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.workingSets" commandName="Working Sets..." description="Manage Working Sets" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKk6NmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.clearDefaultBreakpointGroup" commandName="Deselect Default Working Set" description="Deselect Default Working Set" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKk6N2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.setDefaultBreakpointGroup" commandName="Select Default Working Set..." description="Select Default Working Set" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKk6OGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.sortByAction" commandName="Sort By" description="Sort By" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKk6OWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction" commandName="Group By" description="Show" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKk6OmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.removeAll" commandName="Remove All" description="Remove All Expressions" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKlhQGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.AddWatchExpression" commandName="Add Watch Expression..." description="Create a new watch expression" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKlhQWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.PinMemoryBlockAction" commandName="Pin Memory Monitor" description="Pin Memory Monitor" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKlhQmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.NewMemoryViewAction" commandName="New Memory View" description="New Memory View" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKlhQ2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglemonitors" commandName="Toggle Memory Monitors Pane" description="Toggle Memory Monitors Pane" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKlhRGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.linkrenderingpanes" commandName="Link Memory Rendering Panes" description="Link Memory Rendering Panes" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKlhRWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.tablerendering.preferencesaction" commandName="Table Renderings Preferences..." description="&Table Renderings Preferences..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKlhRmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglesplitpane" commandName="Toggle Split Pane" description="Toggle Split Pane" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKlhR2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.switchMemoryBlock" commandName="Switch Memory Monitor" description="Switch Memory Monitor" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKlhSGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.memoryViewPreferencesAction" commandName="Preferences..." description="&Preferences..." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKlhSWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.Preferences" commandName="Java Preferences..." description="Opens preferences for Java variables" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKlhSmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variablesViewActions.AllReferencesInView" commandName="Show References" description="Shows references to each object in the variables view as an array of objects." category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmIUGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowNullEntries" commandName="Show Null Array Entries" description="Show Null Array Entries" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmIUWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmIUmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmIU2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmIVGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.variableViewActions.Preferences" commandName="Java Preferences..." description="Opens preferences for Java variables" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmIVWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.AllReferencesInView" commandName="Show References" description="Show &References" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmIVmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowNullEntries" commandName="Show Null Array Entries" description="Show Null Array Entries" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmIV2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmIWGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmIWWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmvYGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.actions.AddException" commandName="Add Java Exception Breakpoint" description="Add Java Exception Breakpoint" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmvYWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmvYmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowThreadGroups" commandName="Show Thread Groups" description="Show Thread Groups" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmvY2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmvZGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowSystemThreads" commandName="Show System Threads" description="Show System Threads" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmvZWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowRunningThreads" commandName="Show Running Threads" description="Show Running Threads" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmvZmaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowMonitorThreadInfo" commandName="Show Monitors" description="Show the Thread & Monitor Information" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmvZ2aLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Watch" commandName="Watch" description="Create a Watch Expression from the Selected Text" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmvaGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Execute" commandName="Execute" description="Execute the Selected Text" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKmvaWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Display" commandName="Display" description="Display Result of Evaluating Selected Text" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKnWcGaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Inspect" commandName="Inspect" description="Inspect Result of Evaluating Selected Text" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<commands xmi:id="_LKnWcWaLEe-_AJixeOhSjw" elementId="AUTOGEN:::org.eclipse.pde.ui.logViewActions/org.eclipse.jdt.debug.ui.LogViewActions.showStackTrace" commandName="Show Stack Trace in Console View" description="Show Stack Trace in Console View" category="_K_TeeGaLEe-_AJixeOhSjw"/>
<addons xmi:id="_K-9gH2aLEe-_AJixeOhSjw" elementId="org.eclipse.e4.core.commands.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.core.commands/org.eclipse.e4.core.commands.CommandServiceAddon"/>
<addons xmi:id="_K-9gIGaLEe-_AJixeOhSjw" elementId="org.eclipse.e4.ui.contexts.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.services/org.eclipse.e4.ui.services.ContextServiceAddon"/>
<addons xmi:id="_K-9gIWaLEe-_AJixeOhSjw" elementId="org.eclipse.e4.ui.bindings.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.bindings/org.eclipse.e4.ui.bindings.BindingServiceAddon"/>
<addons xmi:id="_K-9gImaLEe-_AJixeOhSjw" elementId="org.eclipse.e4.ui.workbench.commands.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.CommandProcessingAddon"/>
<addons xmi:id="_K-9gI2aLEe-_AJixeOhSjw" elementId="org.eclipse.e4.ui.workbench.contexts.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.ContextProcessingAddon"/>
<addons xmi:id="_K-9gJGaLEe-_AJixeOhSjw" elementId="org.eclipse.e4.ui.workbench.bindings.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.swt/org.eclipse.e4.ui.workbench.swt.util.BindingProcessingAddon"/>
<addons xmi:id="_K-9gJWaLEe-_AJixeOhSjw" elementId="Cleanup Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.cleanupaddon.CleanupAddon"/>
<addons xmi:id="_K-9gJmaLEe-_AJixeOhSjw" elementId="DnD Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.dndaddon.DnDAddon"/>
<addons xmi:id="_K-9gJ2aLEe-_AJixeOhSjw" elementId="MinMax Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon"/>
<addons xmi:id="_K-9gKGaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.workbench.addon.0" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.HandlerProcessingAddon"/>
<addons xmi:id="_K_DmsGaLEe-_AJixeOhSjw" elementId="SplitterAddon" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.splitteraddon.SplitterAddon"/>
<addons xmi:id="_cSNJgWaLEe-45unrtIRCkA" elementId="org.eclipse.ui.ide.addon.0" contributionURI="bundleclass://org.eclipse.ui.ide/org.eclipse.ui.internal.ide.addons.SaveAllDirtyPartsAddon"/>
<addons xmi:id="_dz0JgGOlEeSMMaPQU2nlzw" elementId="org.eclipse.ui.ide.application.addon.0" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" contributionURI="bundleclass://org.eclipse.ui.ide.application/org.eclipse.ui.internal.ide.application.addons.ModelCleanupAddon"/>
<categories xmi:id="_K_TeUGaLEe-_AJixeOhSjw" elementId="org.eclipse.team.ui.category.team" name="Version control (Team)" description="Actions that apply when working with a version control system"/>
<categories xmi:id="_K_TeUWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.category.views" name="Views" description="Commands for opening views"/>
<categories xmi:id="_K_TeUmaLEe-_AJixeOhSjw" elementId="org.springframework.tooling.ls.eclipse.gotosymbol.commands.category" name="STS4"/>
<categories xmi:id="_K_TeU2aLEe-_AJixeOhSjw" elementId="dev.dietermai.projectselect.projectSelect" name="Project Select" description="Part of the Project Select Plugin"/>
<categories xmi:id="_K_TeVGaLEe-_AJixeOhSjw" elementId="org.eclipse.tm4e.languageconfiguration.category" name="TM4E Language Configuration"/>
<categories xmi:id="_K_TeVWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.category.edit" name="Edit"/>
<categories xmi:id="_K_TeVmaLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.boot.commands.category" name="Spring Boot"/>
<categories xmi:id="_K_TeV2aLEe-_AJixeOhSjw" elementId="org.eclipse.mylyn.wikitext.ui.editor.category" name="WikiText Markup Editing Commands" description="commands for editing lightweight markup"/>
<categories xmi:id="_K_TeWGaLEe-_AJixeOhSjw" elementId="org.eclipse.buildship.ui.project" name="Buildship" description="Contains the Buildship specific commands"/>
<categories xmi:id="_K_TeWWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.ide.markerContents" name="Contents" description="The category for menu contents"/>
<categories xmi:id="_K_TeWmaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.category.textEditor" name="Text Editing" description="Text Editing Commands"/>
<categories xmi:id="_K_TeW2aLEe-_AJixeOhSjw" elementId="org.dadacoalition.yedit.commands.category" name="YEdit" description="Commands related to the YEdit plugin"/>
<categories xmi:id="_K_TeXGaLEe-_AJixeOhSjw" elementId="org.eclipse.wst.jsdt.ui.category.source" name="Source" description="JavaScript Source Actions"/>
<categories xmi:id="_K_TeXWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.category.navigate" name="Navigate"/>
<categories xmi:id="_K_TeXmaLEe-_AJixeOhSjw" elementId="AnsiConsole.command.categoryid" name="Ansi Console Commands"/>
<categories xmi:id="_K_TeX2aLEe-_AJixeOhSjw" elementId="org.eclipse.wst.server.ui" name="Server" description="Server"/>
<categories xmi:id="_K_TeYGaLEe-_AJixeOhSjw" elementId="org.eclipse.lsp4e.category" name="Language Servers"/>
<categories xmi:id="_K_TeYWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.category.file" name="File"/>
<categories xmi:id="_K_TeYmaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.view.ui.commands.category" name="Terminal Commands"/>
<categories xmi:id="_K_TeY2aLEe-_AJixeOhSjw" elementId="org.eclipse.compare.ui.category.compare" name="Compare" description="Compare command category"/>
<categories xmi:id="_K_TeZGaLEe-_AJixeOhSjw" elementId="org.eclipse.text.quicksearch.commands.category" name="Quick Search"/>
<categories xmi:id="_K_TeZWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.category.window" name="Window"/>
<categories xmi:id="_K_TeZmaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.category.refactoring" name="Refactor - Java" description="Java Refactoring Actions"/>
<categories xmi:id="_K_TeZ2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.category.help" name="Help"/>
<categories xmi:id="_K_TeaGaLEe-_AJixeOhSjw" elementId="org.springframework.ide.eclipse.commands" name="Spring Generic Text Editor" description="Spring Language Server Commands"/>
<categories xmi:id="_K_TeaWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.category.project" name="Project"/>
<categories xmi:id="_K_TeamaLEe-_AJixeOhSjw" elementId="org.springsource.ide.eclipse.common.ui.commands" name="SpringSource Tools"/>
<categories xmi:id="_K_Tea2aLEe-_AJixeOhSjw" elementId="org.eclipse.pde.genericeditor.extension.category.source" name="Target Definition Source" description="Target Definition Source Page actions"/>
<categories xmi:id="_K_TebGaLEe-_AJixeOhSjw" elementId="org.eclipse.tm.terminal.category1" name="Terminal view commands" description="Terminal view commands"/>
<categories xmi:id="_K_TebWaLEe-_AJixeOhSjw" elementId="org.eclipse.search.ui.category.search" name="Search" description="Search command category"/>
<categories xmi:id="_K_TebmaLEe-_AJixeOhSjw" elementId="org.eclipse.debug.ui.category.run" name="Run/Debug" description="Run/Debug command category"/>
<categories xmi:id="_K_Teb2aLEe-_AJixeOhSjw" elementId="org.eclipse.ui.category.dialogs" name="Dialogs" description="Commands for opening dialogs"/>
<categories xmi:id="_K_TecGaLEe-_AJixeOhSjw" elementId="org.eclipse.egit.ui.commandCategory" name="Git"/>
<categories xmi:id="_K_TecWaLEe-_AJixeOhSjw" elementId="org.eclipse.ui.category.perspectives" name="Perspectives" description="Commands for opening perspectives"/>
<categories xmi:id="_K_TecmaLEe-_AJixeOhSjw" elementId="org.eclipse.ltk.ui.category.refactoring" name="Refactoring"/>
<categories xmi:id="_K_Tec2aLEe-_AJixeOhSjw" elementId="org.eclipse.lsp4e.commandCategory" name="Command"/>
<categories xmi:id="_K_TedGaLEe-_AJixeOhSjw" elementId="org.eclipse.gef.category.view" name="View" description="View"/>
<categories xmi:id="_K_TedWaLEe-_AJixeOhSjw" elementId="org.eclipse.jdt.ui.category.source" name="Source" description="Java Source Actions"/>
<categories xmi:id="_K_TedmaLEe-_AJixeOhSjw" elementId="org.eclipse.pde.runtime.spy.commands.category" name="Spy"/>
<categories xmi:id="_K_Ted2aLEe-_AJixeOhSjw" elementId="org.eclipse.pde.ui.category.source" name="Manifest Editor Source" description="PDE Source Page actions"/>
<categories xmi:id="_K_TeeGaLEe-_AJixeOhSjw" elementId="org.eclipse.core.commands.categories.autogenerated" name="Uncategorized" description="Commands that were either auto-generated or have no category"/>
</application:Application>