summaryrefslogblamecommitdiff
path: root/client/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi
blob: 1f5d3672d7c56bdb1b9aca7b3d9c7431affb7c73 (plain) (tree)
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





















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
<?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="_nNAGgQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.ui.workbench" selectedElement="_nNAGgg0VEeO-8I6yck2Tzw" bindingContexts="_nNAtkg0VEeO-8I6yck2Tzw">
  <tags>activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
  <children xsi:type="basic:TrimmedWindow" xmi:id="_nNAGgg0VEeO-8I6yck2Tzw" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.ui.workbench" selectedElement="_nm7CYQ0VEeO-8I6yck2Tzw" x="1206" y="79" width="1094" height="755">
    <tags>topLevel</tags>
    <tags>shellMaximized</tags>
    <children xsi:type="basic:PartSashContainer" xmi:id="_nm7CYQ0VEeO-8I6yck2Tzw" selectedElement="_nm7pcA0VEeO-8I6yck2Tzw" horizontal="true">
      <children xsi:type="advanced:PerspectiveStack" xmi:id="_nm7pcA0VEeO-8I6yck2Tzw" elementId="PerspectiveStack" containerData="7500" selectedElement="_nxZNAA0VEeO-8I6yck2Tzw">
        <children xsi:type="advanced:Perspective" xmi:id="_nxZNAA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.JavaPerspective" selectedElement="_nxZNAQ0VEeO-8I6yck2Tzw" label="Java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/jperspective.gif">
          <persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:org.eclipse.debug.ui.commands.RunToLine,persp.hideToolbarSC:org.eclipse.jdt.ui.actions.OpenProjectWizard,persp.hideToolbarSC:org.eclipse.ui.edit.text.toggleShowSelectedElementOnly,"/>
          <tags>persp.actionSet:org.eclipse.ui.cheatsheets.actionSet</tags>
          <tags>persp.actionSet:org.eclipse.search.searchActionSet</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.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.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.newWizSC:com.android.ide.eclipse.adt.project.NewProjectWizard</tags>
          <tags>persp.newWizSC:com.android.ide.eclipse.editors.wizards.NewXmlFileWizard</tags>
          <tags>persp.actionSet:adt.actionSet.wizards</tags>
          <tags>persp.actionSet:adt.actionSet.avdManager</tags>
          <tags>persp.actionSet:adt.actionSet.lint</tags>
          <tags>persp.actionSet:adt.actionSet.refactorings</tags>
          <tags>persp.perspSC:com.android.ide.eclipse.ddms.Perspective</tags>
          <tags>persp.perspSC:com.android.ide.eclipse.hierarchyviewer.PixelPerfectPespective</tags>
          <tags>persp.perspSC:com.android.ide.eclipse.hierarchyviewer.TreeViewPerspective</tags>
          <tags>persp.viewSC:org.eclipse.ant.ui.views.AntView</tags>
          <tags>persp.showIn:org.eclipse.egit.ui.RepositoriesView</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.jdt.ui.PackageExplorer</tags>
          <tags>persp.showIn:org.eclipse.team.ui.GenericHistoryView</tags>
          <tags>persp.showIn:org.eclipse.ui.views.ResourceNavigator</tags>
          <tags>persp.showIn:org.eclipse.ui.navigator.ProjectExplorer</tags>
          <children xsi:type="basic:PartSashContainer" xmi:id="_nxZNAQ0VEeO-8I6yck2Tzw" selectedElement="_nxZ0Fg0VEeO-8I6yck2Tzw" horizontal="true">
            <children xsi:type="basic:PartSashContainer" xmi:id="_nxZNAg0VEeO-8I6yck2Tzw" containerData="2500" selectedElement="_nxZNAw0VEeO-8I6yck2Tzw">
              <children xsi:type="basic:PartStack" xmi:id="_nxZNAw0VEeO-8I6yck2Tzw" elementId="left" containerData="6000" selectedElement="_nxZNBA0VEeO-8I6yck2Tzw">
                <tags>newtablook</tags>
                <tags>org.eclipse.e4.primaryNavigationStack</tags>
                <children xsi:type="advanced:Placeholder" xmi:id="_nxZNBA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.PackageExplorer" ref="_nxFrAA0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_nxZ0EA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_nxJ8cA0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_nxZ0EQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_nxKjgA0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_nxZ0Eg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigator.ProjectExplorer" toBeRendered="false" ref="_nxKjgQ0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_nxZ0Ew0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.junit.ResultView" toBeRendered="false" ref="_nxX-4A0VEeO-8I6yck2Tzw"/>
              </children>
              <children xsi:type="basic:PartStack" xmi:id="_nxZ0FA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewMStack" toBeRendered="false" containerData="4000">
                <tags>newtablook</tags>
                <children xsi:type="advanced:Placeholder" xmi:id="_nxZ0FQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesView" toBeRendered="false" ref="_nxXX0A0VEeO-8I6yck2Tzw"/>
              </children>
            </children>
            <children xsi:type="basic:PartSashContainer" xmi:id="_nxZ0Fg0VEeO-8I6yck2Tzw" containerData="7500" selectedElement="_nxZ0Fw0VEeO-8I6yck2Tzw">
              <children xsi:type="basic:PartSashContainer" xmi:id="_nxZ0Fw0VEeO-8I6yck2Tzw" containerData="7500" selectedElement="_nxZ0GA0VEeO-8I6yck2Tzw" horizontal="true">
                <children xsi:type="advanced:Placeholder" xmi:id="_nxZ0GA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_nwrbUA0VEeO-8I6yck2Tzw"/>
                <children xsi:type="basic:PartStack" xmi:id="_nxabIA0VEeO-8I6yck2Tzw" elementId="right" containerData="2500" selectedElement="_nxabIQ0VEeO-8I6yck2Tzw">
                  <tags>newtablook</tags>
                  <tags>org.eclipse.e4.secondaryNavigationStack</tags>
                  <children xsi:type="advanced:Placeholder" xmi:id="_nxabIQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.ContentOutline" ref="_nxNm0A0VEeO-8I6yck2Tzw"/>
                  <children xsi:type="advanced:Placeholder" xmi:id="_nxabIg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.texteditor.TemplatesView" toBeRendered="false" ref="_nxON4A0VEeO-8I6yck2Tzw"/>
                  <children xsi:type="advanced:Placeholder" xmi:id="_nxabIw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_nxVioA0VEeO-8I6yck2Tzw"/>
                </children>
              </children>
              <children xsi:type="basic:PartStack" xmi:id="_nxabJA0VEeO-8I6yck2Tzw" elementId="bottom" containerData="2500" selectedElement="_nxabKQ0VEeO-8I6yck2Tzw">
                <tags>newtablook</tags>
                <tags>org.eclipse.e4.secondaryDataStack</tags>
                <children xsi:type="advanced:Placeholder" xmi:id="_nxabJQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.ProblemView" ref="_nxKjgg0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_nxabJg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.JavadocView" ref="_nxLKkA0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_nxabJw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.SourceView" ref="_nxLxoA0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_nxabKA0VEeO-8I6yck2Tzw" elementId="org.eclipse.search.ui.views.SearchView" toBeRendered="false" ref="_nxMYsA0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_nxabKQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.console.ConsoleView" ref="_nxM_wA0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_nxbCMA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_nxM_wQ0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_nxbCMQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.ProgressView" toBeRendered="false" ref="_nxM_wg0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_zRAU0A0eEeOIacLjN9pZUA" elementId="com.android.ide.eclipse.ddms.views.LogCatView" ref="_zQ_GsA0eEeOIacLjN9pZUA"/>
              </children>
            </children>
          </children>
        </children>
        <children xsi:type="advanced:Perspective" xmi:id="_t39XEA0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.DebugPerspective" selectedElement="_t39XEQ0fEeOIacLjN9pZUA" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_persp.gif">
          <persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:org.eclipse.debug.ui.commands.RunToLine,persp.hideToolbarSC:org.eclipse.jdt.ui.actions.OpenProjectWizard,persp.hideToolbarSC:org.eclipse.ui.edit.text.toggleShowSelectedElementOnly,"/>
          <tags>persp.actionSet:org.eclipse.ui.cheatsheets.actionSet</tags>
          <tags>persp.actionSet:org.eclipse.search.searchActionSet</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.eclipse.debug.ui.launchActionSet</tags>
          <tags>persp.actionSet:org.eclipse.debug.ui.debugActionSet</tags>
          <tags>persp.viewSC:org.eclipse.debug.ui.DebugView</tags>
          <tags>persp.viewSC:org.eclipse.debug.ui.VariableView</tags>
          <tags>persp.viewSC:org.eclipse.debug.ui.BreakpointView</tags>
          <tags>persp.viewSC:org.eclipse.debug.ui.ExpressionView</tags>
          <tags>persp.viewSC:org.eclipse.ui.views.ContentOutline</tags>
          <tags>persp.viewSC:org.eclipse.ui.console.ConsoleView</tags>
          <tags>persp.viewSC:org.eclipse.ui.views.TaskList</tags>
          <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.LogCatView</tags>
          <tags>persp.viewSC:com.android.ide.eclipse.ddms.views.DeviceView</tags>
          <tags>persp.perspSC:com.android.ide.eclipse.ddms.Perspective</tags>
          <tags>persp.viewSC:org.eclipse.ant.ui.views.AntView</tags>
          <tags>persp.viewSC:org.eclipse.cdt.debug.ui.SignalsView</tags>
          <tags>persp.viewSC:org.eclipse.debug.ui.RegisterView</tags>
          <tags>persp.viewSC:org.eclipse.debug.ui.ModuleView</tags>
          <tags>persp.viewSC:org.eclipse.debug.ui.MemoryView</tags>
          <tags>persp.viewSC:org.eclipse.ui.views.ProblemView</tags>
          <tags>persp.viewSC:org.eclipse.cdt.debug.ui.executablesView</tags>
          <tags>persp.actionSet:org.eclipse.cdt.debug.ui.debugActionSet</tags>
          <tags>persp.viewSC:org.eclipse.cdt.dsf.gdb.ui.tracecontrol.view</tags>
          <tags>persp.viewSC:org.eclipse.cdt.dsf.debug.ui.disassembly.view</tags>
          <tags>persp.perspSC:org.eclipse.cdt.ui.CPerspective</tags>
          <tags>persp.actionSet:org.eclipse.ui.NavigateActionSet</tags>
          <tags>persp.actionSet:org.eclipse.debug.ui.breakpointActionSet</tags>
          <tags>persp.viewSC:org.eclipse.pde.runtime.LogView</tags>
          <tags>persp.showIn:org.eclipse.egit.ui.RepositoriesView</tags>
          <tags>persp.actionSet:org.eclipse.jdt.debug.ui.JDTDebugActionSet</tags>
          <tags>persp.viewSC:org.eclipse.jdt.debug.ui.DisplayView</tags>
          <tags>persp.perspSC:org.eclipse.jdt.ui.JavaPerspective</tags>
          <tags>persp.perspSC:org.eclipse.jdt.ui.JavaBrowsingPerspective</tags>
          <tags>persp.actionSet:org.eclipse.jdt.ui.JavaActionSet</tags>
          <tags>persp.showIn:org.eclipse.jdt.ui.PackageExplorer</tags>
          <tags>persp.perspSC:org.eclipse.wst.xml.ui.perspective</tags>
          <children xsi:type="basic:PartSashContainer" xmi:id="_t39XEQ0fEeOIacLjN9pZUA" selectedElement="_t39XEg0fEeOIacLjN9pZUA">
            <children xsi:type="basic:PartSashContainer" xmi:id="_t39XEg0fEeOIacLjN9pZUA" containerData="7500" selectedElement="_t39-JQ0fEeOIacLjN9pZUA">
              <children xsi:type="basic:PartSashContainer" xmi:id="_t39XEw0fEeOIacLjN9pZUA" containerData="4500" selectedElement="_t39XFA0fEeOIacLjN9pZUA" horizontal="true">
                <children xsi:type="basic:PartStack" xmi:id="_t39XFA0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.internal.ui.NavigatorFolderView" containerData="5000" selectedElement="_t39XFQ0fEeOIacLjN9pZUA">
                  <tags>newtablook</tags>
                  <tags>org.eclipse.e4.primaryNavigationStack</tags>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39XFQ0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.DebugView" ref="_t3p1EA0fEeOIacLjN9pZUA"/>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39XFg0fEeOIacLjN9pZUA" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_nxKjgA0VEeO-8I6yck2Tzw"/>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39XFw0fEeOIacLjN9pZUA" elementId="org.eclipse.jdt.ui.PackageExplorer" toBeRendered="false" ref="_nxFrAA0VEeO-8I6yck2Tzw"/>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39XGA0fEeOIacLjN9pZUA" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_nxJ8cA0VEeO-8I6yck2Tzw"/>
                </children>
                <children xsi:type="basic:PartStack" xmi:id="_t39XGQ0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.internal.ui.ToolsFolderView" containerData="5000" selectedElement="_t39XGg0fEeOIacLjN9pZUA">
                  <tags>newtablook</tags>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39XGg0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.VariableView" ref="_t3qcIA0fEeOIacLjN9pZUA"/>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39-IA0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.BreakpointView" ref="_t3rDMA0fEeOIacLjN9pZUA"/>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39-IQ0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.ExpressionView" toBeRendered="false" ref="_t3rqQA0fEeOIacLjN9pZUA"/>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39-Ig0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.RegisterView" toBeRendered="false" ref="_t3rqQQ0fEeOIacLjN9pZUA"/>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39-Iw0fEeOIacLjN9pZUA" elementId="org.eclipse.cdt.debug.ui.SignalsView" toBeRendered="false" ref="_t35FoA0fEeOIacLjN9pZUA"/>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39-JA0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.ModuleView" toBeRendered="false" ref="_t35FoQ0fEeOIacLjN9pZUA"/>
                </children>
              </children>
              <children xsi:type="basic:PartSashContainer" xmi:id="_t39-JQ0fEeOIacLjN9pZUA" containerData="5500" selectedElement="_t39-Jg0fEeOIacLjN9pZUA" horizontal="true">
                <children xsi:type="advanced:Placeholder" xmi:id="_t39-Jg0fEeOIacLjN9pZUA" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_nwrbUA0VEeO-8I6yck2Tzw"/>
                <children xsi:type="basic:PartStack" xmi:id="_t39-Jw0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.internal.ui.OutlineFolderView" containerData="2500" selectedElement="_t39-KA0fEeOIacLjN9pZUA">
                  <tags>newtablook</tags>
                  <tags>org.eclipse.e4.secondaryNavigationStack</tags>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39-KA0fEeOIacLjN9pZUA" elementId="org.eclipse.ui.views.ContentOutline" ref="_nxNm0A0VEeO-8I6yck2Tzw"/>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39-KQ0fEeOIacLjN9pZUA" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_nxVioA0VEeO-8I6yck2Tzw"/>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39-Kg0fEeOIacLjN9pZUA" elementId="org.eclipse.cdt.dsf.gdb.ui.tracecontrol.view" toBeRendered="false" ref="_t37h4A0fEeOIacLjN9pZUA"/>
                  <children xsi:type="advanced:Placeholder" xmi:id="_t39-Kw0fEeOIacLjN9pZUA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.view" toBeRendered="false" ref="_t37h4Q0fEeOIacLjN9pZUA"/>
                </children>
              </children>
            </children>
            <children xsi:type="basic:PartSashContainer" xmi:id="_t39-LA0fEeOIacLjN9pZUA" containerData="2500" horizontal="true">
              <children xsi:type="basic:PartStack" xmi:id="_t39-LQ0fEeOIacLjN9pZUA" elementId="com.android.ide.eclipse.ddms.views.LogCatViewMStack" containerData="5000" selectedElement="_t39-Lg0fEeOIacLjN9pZUA">
                <tags>newtablook</tags>
                <children xsi:type="advanced:Placeholder" xmi:id="_t39-Lg0fEeOIacLjN9pZUA" elementId="com.android.ide.eclipse.ddms.views.LogCatView" ref="_zQ_GsA0eEeOIacLjN9pZUA"/>
              </children>
              <children xsi:type="basic:PartStack" xmi:id="_t39-Lw0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.internal.ui.ConsoleFolderView" containerData="5000" selectedElement="_t39-MA0fEeOIacLjN9pZUA">
                <tags>newtablook</tags>
                <tags>org.eclipse.e4.secondaryDataStack</tags>
                <children xsi:type="advanced:Placeholder" xmi:id="_t39-MA0fEeOIacLjN9pZUA" elementId="org.eclipse.ui.console.ConsoleView" ref="_nxM_wA0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_t3-lMA0fEeOIacLjN9pZUA" elementId="org.eclipse.ui.views.TaskList" ref="_t3n_4A0fEeOIacLjN9pZUA"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_t3-lMQ0fEeOIacLjN9pZUA" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_nxM_wQ0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_t3-lMg0fEeOIacLjN9pZUA" elementId="org.eclipse.ui.views.PropertySheet" toBeRendered="false" ref="_t3pOAA0fEeOIacLjN9pZUA"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_t3-lMw0fEeOIacLjN9pZUA" elementId="org.eclipse.ui.views.ProblemView" ref="_nxKjgg0VEeO-8I6yck2Tzw"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_t3-lNA0fEeOIacLjN9pZUA" elementId="org.eclipse.cdt.debug.ui.executablesView" ref="_t36TwA0fEeOIacLjN9pZUA"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_t3-lNQ0fEeOIacLjN9pZUA" elementId="org.eclipse.jdt.debug.ui.DisplayView" toBeRendered="false" ref="_t38I8A0fEeOIacLjN9pZUA"/>
                <children xsi:type="advanced:Placeholder" xmi:id="_t3-lNg0fEeOIacLjN9pZUA" elementId="org.eclipse.search.SearchResultView" toBeRendered="false" ref="_t38wAA0fEeOIacLjN9pZUA"/>
              </children>
            </children>
          </children>
        </children>
      </children>
      <children xsi:type="basic:PartStack" xmi:id="_nm7pcQ0VEeO-8I6yck2Tzw" elementId="stickyFolderRight" toBeRendered="false" containerData="2500">
        <children xsi:type="advanced:Placeholder" xmi:id="_nm7pcg0VEeO-8I6yck2Tzw" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_nm5NMA0VEeO-8I6yck2Tzw"/>
        <children xsi:type="advanced:Placeholder" xmi:id="_nm7pcw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.internal.introview" toBeRendered="false" ref="_nm6bUA0VEeO-8I6yck2Tzw"/>
        <children xsi:type="advanced:Placeholder" xmi:id="_nm7pdA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" toBeRendered="false" ref="_nm7CYA0VEeO-8I6yck2Tzw"/>
      </children>
    </children>
    <sharedElements xsi:type="basic:Part" xmi:id="_nm5NMA0VEeO-8I6yck2Tzw" 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.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Help</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nm6bUA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.internal.introview" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Android IDE" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" tooltip="" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:General</tags>
      <menus xmi:id="_n85SYA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.internal.introview">
        <tags>ViewMenu</tags>
        <tags>menuContribution:menu</tags>
      </menus>
      <toolbar xmi:id="_n855cA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.internal.introview" visible="false"/>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nm7CYA0VEeO-8I6yck2Tzw" 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.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Help</tags>
    </sharedElements>
    <sharedElements xsi:type="advanced:Area" xmi:id="_nwrbUA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.editorss" selectedElement="_nwrbUQ0VEeO-8I6yck2Tzw">
      <children xsi:type="basic:PartStack" xmi:id="_nwrbUQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.primaryDataStack" selectedElement="_kN7tgA06EeO-LcrD_GrR_g">
        <tags>newtablook</tags>
        <tags>org.eclipse.e4.primaryDataStack</tags>
        <tags>EditorStack</tags>
        <children xsi:type="basic:Part" xmi:id="_yLP3kA0nEeOckphpKkQiww" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Login.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="Piztor/src/com/macaroon/piztor/Login.java" closeable="true">
          <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/Piztor/src/com/macaroon/piztor/Login.java&quot;/>&#xA;&lt;editorState selectionHorizontalPixel=&quot;0&quot; selectionLength=&quot;0&quot; selectionOffset=&quot;1115&quot; selectionTopPixel=&quot;685&quot;/>&#xA;&lt;/editor>"/>
          <tags>Editor</tags>
          <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
          <tags>removeOnHide</tags>
        </children>
        <children xsi:type="basic:Part" xmi:id="_ElsHsA0qEeOckphpKkQiww" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="activity_login.xml" iconURI="platform:/plugin/com.android.ide.eclipse.adt/icons/android_file.png" tooltip="Piztor/res/layout/activity_login.xml" closeable="true">
          <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;com.android.ide.eclipse.editors.CommonXmlEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/Piztor/res/layout/activity_login.xml&quot;/>&#xA;&lt;/editor>"/>
          <tags>Editor</tags>
          <tags>com.android.ide.eclipse.editors.CommonXmlEditor</tags>
          <tags>removeOnHide</tags>
        </children>
        <children xsi:type="basic:Part" xmi:id="_iBbFkA0tEeOckphpKkQiww" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ActMgr.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="Piztor/src/com/macaroon/piztor/ActMgr.java" closeable="true">
          <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/Piztor/src/com/macaroon/piztor/ActMgr.java&quot;/>&#xA;&lt;editorState selectionHorizontalPixel=&quot;0&quot; selectionLength=&quot;0&quot; selectionOffset=&quot;653&quot; selectionTopPixel=&quot;176&quot;/>&#xA;&lt;/editor>"/>
          <tags>Editor</tags>
          <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
          <tags>removeOnHide</tags>
        </children>
        <children xsi:type="basic:Part" xmi:id="_W-6WMA00EeOckphpKkQiww" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="UserInfo.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="Piztor/src/com/macaroon/piztor/UserInfo.java" closeable="true">
          <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/Piztor/src/com/macaroon/piztor/UserInfo.java&quot;/>&#xA;&lt;editorState selectionHorizontalPixel=&quot;0&quot; selectionLength=&quot;0&quot; selectionOffset=&quot;86&quot; selectionTopPixel=&quot;0&quot;/>&#xA;&lt;/editor>"/>
          <tags>Editor</tags>
          <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
          <tags>removeOnHide</tags>
        </children>
        <children xsi:type="basic:Part" xmi:id="_kJN3gA04EeOckphpKkQiww" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="InitAct.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="Piztor/src/com/macaroon/piztor/InitAct.java" closeable="true">
          <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/Piztor/src/com/macaroon/piztor/InitAct.java&quot;/>&#xA;&lt;editorState selectionHorizontalPixel=&quot;0&quot; selectionLength=&quot;0&quot; selectionOffset=&quot;521&quot; selectionTopPixel=&quot;157&quot;/>&#xA;&lt;/editor>"/>
          <tags>Editor</tags>
          <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
          <tags>removeOnHide</tags>
        </children>
        <children xsi:type="basic:Part" xmi:id="_3mAnYA04EeO-LcrD_GrR_g" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="AppMgr.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="Piztor/src/com/macaroon/piztor/AppMgr.java" closeable="true">
          <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/Piztor/src/com/macaroon/piztor/AppMgr.java&quot;/>&#xA;&lt;editorState selectionHorizontalPixel=&quot;0&quot; selectionLength=&quot;0&quot; selectionOffset=&quot;1814&quot; selectionTopPixel=&quot;1126&quot;/>&#xA;&lt;/editor>"/>
          <tags>Editor</tags>
          <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
          <tags>removeOnHide</tags>
        </children>
        <children xsi:type="basic:Part" xmi:id="_JgzZAA05EeO-LcrD_GrR_g" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Transam.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="Piztor/src/com/macaroon/piztor/Transam.java" closeable="true">
          <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/Piztor/src/com/macaroon/piztor/Transam.java&quot;/>&#xA;&lt;editorState selectionHorizontalPixel=&quot;0&quot; selectionLength=&quot;0&quot; selectionOffset=&quot;2209&quot; selectionTopPixel=&quot;1502&quot;/>&#xA;&lt;/editor>"/>
          <tags>Editor</tags>
          <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
          <tags>removeOnHide</tags>
        </children>
        <children xsi:type="basic:Part" xmi:id="_kN7tgA06EeO-LcrD_GrR_g" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Main.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="Piztor/src/com/macaroon/piztor/Main.java" closeable="true">
          <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/Piztor/src/com/macaroon/piztor/Main.java&quot;/>&#xA;&lt;editorState selectionHorizontalPixel=&quot;0&quot; selectionLength=&quot;0&quot; selectionOffset=&quot;504&quot; selectionTopPixel=&quot;0&quot;/>&#xA;&lt;/editor>"/>
          <tags>Editor</tags>
          <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
          <tags>removeOnHide</tags>
          <tags>activeOnClose</tags>
        </children>
        <children xsi:type="basic:Part" xmi:id="_CVUs8A09EeO-LcrD_GrR_g" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="SocketClient.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.gif" tooltip="Piztor/src/com/macaroon/piztor/SocketClient.java" closeable="true">
          <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;org.eclipse.jdt.ui.CompilationUnitEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/Piztor/src/com/macaroon/piztor/SocketClient.java&quot;/>&#xA;&lt;editorState selectionHorizontalPixel=&quot;0&quot; selectionLength=&quot;0&quot; selectionOffset=&quot;500&quot; selectionTopPixel=&quot;0&quot;/>&#xA;&lt;/editor>"/>
          <tags>Editor</tags>
          <tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
          <tags>removeOnHide</tags>
        </children>
        <children xsi:type="basic:Part" xmi:id="_PLCbIA09EeO-LcrD_GrR_g" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="Piztor Manifest" iconURI="platform:/plugin/com.android.ide.eclipse.adt/icons/android_file.png" tooltip="Piztor/AndroidManifest.xml" closeable="true">
          <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;editor id=&quot;com.android.ide.eclipse.editors.manifest.ManifestEditor&quot;>&#xA;&lt;input factoryID=&quot;org.eclipse.ui.part.FileEditorInputFactory&quot; path=&quot;/Piztor/AndroidManifest.xml&quot;/>&#xA;&lt;/editor>"/>
          <tags>Editor</tags>
          <tags>com.android.ide.eclipse.editors.manifest.ManifestEditor</tags>
          <tags>removeOnHide</tags>
        </children>
      </children>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxFrAA0VEeO-8I6yck2Tzw" 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.gif" tooltip="Workspace" closeable="true">
      <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;view group_libraries=&quot;1&quot; layout=&quot;2&quot; linkWithEditor=&quot;0&quot; rootMode=&quot;1&quot; workingSetName=&quot;&quot;>&#xA;&lt;customFilters userDefinedPatternsEnabled=&quot;false&quot;>&#xA;&lt;xmlDefinedFilters>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.LibraryFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.LocalTypesFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.StaticsFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.ClosedProjectsFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.NonSharedProjectsFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.NonJavaElementFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.ContainedLibraryFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.CuAndClassFileFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.NonJavaProjectsFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.internal.ui.PackageExplorer.EmptyInnerPackageFilter&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.PackageDeclarationFilter&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.internal.ui.PackageExplorer.EmptyPackageFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.ImportDeclarationFilter&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.FieldsFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.internal.ui.PackageExplorer.HideInnerClassFilesFilter&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.NonPublicFilter&quot; isEnabled=&quot;false&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer_patternFilterId_.*&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.EmptyLibraryContainerFilter&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;child filterId=&quot;org.eclipse.jdt.ui.PackageExplorer.SyntheticMembersFilter&quot; isEnabled=&quot;true&quot;/>&#xA;&lt;/xmlDefinedFilters>&#xA;&lt;/customFilters>&#xA;&lt;/view>"/>
      <tags>View</tags>
      <tags>categoryTag:Java</tags>
      <menus xmi:id="_n1EMEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.PackageExplorer">
        <tags>ViewMenu</tags>
        <tags>menuContribution:menu</tags>
      </menus>
      <toolbar xmi:id="_n1EMEQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.PackageExplorer" visible="false"/>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxJ8cA0VEeO-8I6yck2Tzw" 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.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Java</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxKjgA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.ResourceNavigator" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Navigator" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/filenav_nav.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:General</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxKjgQ0VEeO-8I6yck2Tzw" 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.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:General</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxKjgg0VEeO-8I6yck2Tzw" 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.gif" tooltip="0 errors, 15 warnings, 0 others" closeable="true">
      <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;view PRIMARY_SORT_FIELD=&quot;org.eclipse.ui.ide.severityAndDescriptionField&quot; categoryGroup=&quot;org.eclipse.ui.ide.severity&quot; markerContentGenerator=&quot;org.eclipse.ui.ide.problemsGenerator&quot; partName=&quot;Problems&quot;>&#xA;&lt;columnWidths org.eclipse.ui.ide.locationField=&quot;120&quot; org.eclipse.ui.ide.markerType=&quot;120&quot; org.eclipse.ui.ide.pathField=&quot;160&quot; org.eclipse.ui.ide.resourceField=&quot;120&quot; org.eclipse.ui.ide.severityAndDescriptionField=&quot;400&quot;/>&#xA;&lt;visible IMemento.internal.id=&quot;org.eclipse.ui.ide.severityAndDescriptionField&quot;/>&#xA;&lt;visible IMemento.internal.id=&quot;org.eclipse.ui.ide.resourceField&quot;/>&#xA;&lt;visible IMemento.internal.id=&quot;org.eclipse.ui.ide.pathField&quot;/>&#xA;&lt;visible IMemento.internal.id=&quot;org.eclipse.ui.ide.locationField&quot;/>&#xA;&lt;visible IMemento.internal.id=&quot;org.eclipse.ui.ide.markerType&quot;/>&#xA;&lt;/view>"/>
      <tags>View</tags>
      <tags>categoryTag:General</tags>
      <menus xmi:id="_n7CRMA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.ProblemView">
        <tags>ViewMenu</tags>
        <tags>menuContribution:menu</tags>
      </menus>
      <toolbar xmi:id="_n7CRMQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.ProblemView" visible="false"/>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxLKkA0VEeO-8I6yck2Tzw" 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.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Java</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxLxoA0VEeO-8I6yck2Tzw" 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.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Java</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxMYsA0VEeO-8I6yck2Tzw" 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.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:General</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxM_wA0VEeO-8I6yck2Tzw" 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.gif" tooltip="" closeable="true">
      <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;view/>"/>
      <tags>View</tags>
      <tags>categoryTag:General</tags>
      <menus xmi:id="_oOUZkA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.console.ConsoleView">
        <tags>ViewMenu</tags>
        <tags>menuContribution:menu</tags>
      </menus>
      <toolbar xmi:id="_oOVAoA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.console.ConsoleView" visible="false"/>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxM_wQ0VEeO-8I6yck2Tzw" 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.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:General</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxM_wg0VEeO-8I6yck2Tzw" 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.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:General</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxNm0A0VEeO-8I6yck2Tzw" 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.gif" tooltip="" closeable="true">
      <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;view/>"/>
      <tags>View</tags>
      <tags>categoryTag:General</tags>
      <menus xmi:id="_n5vQsA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.ContentOutline">
        <tags>ViewMenu</tags>
        <tags>menuContribution:menu</tags>
      </menus>
      <toolbar xmi:id="_n5vQsQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.ContentOutline" visible="false"/>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxON4A0VEeO-8I6yck2Tzw" 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.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:General</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxVioA0VEeO-8I6yck2Tzw" 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.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Ant</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxXX0A0VEeO-8I6yck2Tzw" 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.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Git</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_nxX-4A0VEeO-8I6yck2Tzw" 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.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Java</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_zQ_GsA0eEeOIacLjN9pZUA" elementId="com.android.ide.eclipse.ddms.views.LogCatView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="LogCat" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/logcat.png" tooltip="" closeable="true">
      <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xA;&lt;view/>"/>
      <tags>View</tags>
      <tags>categoryTag:Android</tags>
      <menus xmi:id="_zRKs4A0eEeOIacLjN9pZUA" elementId="com.android.ide.eclipse.ddms.views.LogCatView">
        <tags>ViewMenu</tags>
        <tags>menuContribution:menu</tags>
      </menus>
      <toolbar xmi:id="_zRLT8A0eEeOIacLjN9pZUA" elementId="com.android.ide.eclipse.ddms.views.LogCatView" visible="false"/>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t3n_4A0fEeOIacLjN9pZUA" elementId="org.eclipse.ui.views.TaskList" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/tasks_tsk.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:General</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t3pOAA0fEeOIacLjN9pZUA" elementId="org.eclipse.ui.views.PropertySheet" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:General</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t3p1EA0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.DebugView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_view.gif" tooltip="" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Debug</tags>
      <menus xmi:id="_t6NZ0A0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.DebugView">
        <tags>ViewMenu</tags>
        <tags>menuContribution:menu</tags>
      </menus>
      <toolbar xmi:id="_t6NZ0Q0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.DebugView" visible="false"/>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t3qcIA0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.VariableView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/variable_view.gif" tooltip="" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Debug</tags>
      <menus xmi:id="_t87WoA0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.VariableView">
        <tags>ViewMenu</tags>
        <tags>menuContribution:menu</tags>
      </menus>
      <toolbar xmi:id="_t87WoQ0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.VariableView" visible="false"/>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t3rDMA0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.BreakpointView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/breakpoint_view.gif" tooltip="" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Debug</tags>
      <menus xmi:id="_uKqQoA0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.BreakpointView">
        <tags>ViewMenu</tags>
        <tags>menuContribution:menu</tags>
      </menus>
      <toolbar xmi:id="_uKqQoQ0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.BreakpointView" visible="false"/>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t3rqQA0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.ExpressionView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/watchlist_view.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Debug</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t3rqQQ0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.RegisterView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/register_view.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Debug</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t35FoA0fEeOIacLjN9pZUA" elementId="org.eclipse.cdt.debug.ui.SignalsView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Signals" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/view16/signals_view.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Debug</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t35FoQ0fEeOIacLjN9pZUA" elementId="org.eclipse.debug.ui.ModuleView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Modules" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/module_view.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Debug</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t36TwA0fEeOIacLjN9pZUA" elementId="org.eclipse.cdt.debug.ui.executablesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Executables" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/obj16/exec_view_obj.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Debug</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t37h4A0fEeOIacLjN9pZUA" elementId="org.eclipse.cdt.dsf.gdb.ui.tracecontrol.view" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Trace Control" iconURI="platform:/plugin/org.eclipse.cdt.dsf.gdb.ui/icons/full/view16/tracecontrol_view.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Debug</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t37h4Q0fEeOIacLjN9pZUA" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.view" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Disassembly" iconURI="platform:/plugin/org.eclipse.cdt.dsf.ui/icons/disassembly.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Debug</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t38I8A0fEeOIacLjN9pZUA" elementId="org.eclipse.jdt.debug.ui.DisplayView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Display" iconURI="platform:/plugin/org.eclipse.jdt.debug.ui/icons/full/etool16/disp_sbook.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:Debug</tags>
    </sharedElements>
    <sharedElements xsi:type="basic:Part" xmi:id="_t38wAA0fEeOIacLjN9pZUA" elementId="org.eclipse.search.SearchResultView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" closeable="true">
      <tags>View</tags>
      <tags>categoryTag:General</tags>
    </sharedElements>
    <trimBars xmi:id="_nnLhEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.main.toolbar">
      <children xsi:type="menu:ToolBar" xmi:id="_nqq58A0VEeO-8I6yck2Tzw" elementId="group.file" toBeRendered="false">
        <tags>toolbarSeparator</tags>
        <children xsi:type="menu:ToolBarSeparator" xmi:id="_nqq58Q0VEeO-8I6yck2Tzw" elementId="group.file" toBeRendered="false"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_nqsIEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.workbench.file">
        <tags>Draggable</tags>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2vyWwA1IEeOULatmD-qAjQ" elementId="new.group"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2vy90A1IEeOULatmD-qAjQ" elementId="newWizardDropDown"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2vy90Q1IEeOULatmD-qAjQ" elementId="new.ext" visible="false"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2vy90g1IEeOULatmD-qAjQ" elementId="save.group" visible="false"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2vzk4A1IEeOULatmD-qAjQ" elementId="save"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2vzk4Q1IEeOULatmD-qAjQ" elementId="saveAll"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2v0L8A1IEeOULatmD-qAjQ" elementId="save.ext" visible="false"/>
        <children xsi:type="menu:HandledToolItem" xmi:id="_2v0zAA1IEeOULatmD-qAjQ" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.gif" tooltip="Print" command="_nOi-rw0VEeO-8I6yck2Tzw"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2v9V4A1IEeOULatmD-qAjQ" elementId="print.ext" visible="false"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2v9V4Q1IEeOULatmD-qAjQ" elementId="build.group"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2v9V4g1IEeOULatmD-qAjQ" elementId="build.ext" visible="false"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2v988A1IEeOULatmD-qAjQ" elementId="additions"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_nqsIEQ0VEeO-8I6yck2Tzw" elementId="additions" toBeRendered="false">
        <tags>toolbarSeparator</tags>
        <children xsi:type="menu:ToolBarSeparator" xmi:id="_nqsvIA0VEeO-8I6yck2Tzw" elementId="additions" toBeRendered="false"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_nzEA8A0VEeO-8I6yck2Tzw" elementId="adt.actionSet.avdManager">
        <tags>Draggable</tags>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_200AsA1IEeOULatmD-qAjQ" elementId="android_project"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_200AsQ1IEeOULatmD-qAjQ" elementId="com.android.ide.eclipse.adt.ui.sdkmanager"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_200nwA1IEeOULatmD-qAjQ" elementId="com.android.ide.eclipse.adt.ui.avdmanager"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_nybHwA0VEeO-8I6yck2Tzw" elementId="adt.actionSet.lint">
        <tags>Draggable</tags>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_201O0A1IEeOULatmD-qAjQ" elementId="android_project"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_201O0Q1IEeOULatmD-qAjQ" elementId="com.android.ide.eclipse.adt.ui.lintrunner"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_nxxngA0VEeO-8I6yck2Tzw" elementId="adt.actionSet.wizards">
        <tags>Draggable</tags>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_20114A1IEeOULatmD-qAjQ" elementId="android_project"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_202c8A1IEeOULatmD-qAjQ" elementId="com.android.ide.eclipse.adt.wizards.actions.NewXmlFileAction"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_0vpvAA0cEeOJONbtYjvLQA" elementId="org.eclipse.debug.ui.breakpointActionSet">
        <tags>Draggable</tags>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_204SIA1IEeOULatmD-qAjQ" elementId="breakpointGroup"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_204SIQ1IEeOULatmD-qAjQ" elementId="org.eclipse.debug.ui.actions.SkipAllBreakpoints"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_nyn8EA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.launchActionSet">
        <tags>Draggable</tags>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2045MA1IEeOULatmD-qAjQ" elementId="debug"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2045MQ1IEeOULatmD-qAjQ" elementId="org.eclipse.debug.internal.ui.actions.DebugDropDownAction"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_205gQA1IEeOULatmD-qAjQ" elementId="org.eclipse.debug.internal.ui.actions.RunDropDownAction"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_206HUA1IEeOULatmD-qAjQ" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_nyUaEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet">
        <tags>Draggable</tags>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_206HUQ1IEeOULatmD-qAjQ" elementId="JavaWizards"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_206uYA1IEeOULatmD-qAjQ" elementId="org.eclipse.jdt.ui.actions.OpenProjectWizard"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_206uYQ1IEeOULatmD-qAjQ" elementId="org.eclipse.jdt.ui.actions.OpenPackageWizard"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_207VcA1IEeOULatmD-qAjQ" elementId="org.eclipse.jdt.ui.actions.NewTypeDropDown"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_nyv34A0VEeO-8I6yck2Tzw" elementId="org.eclipse.search.searchActionSet">
        <tags>Draggable</tags>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_207VcQ1IEeOULatmD-qAjQ" elementId="Search"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_207Vcg1IEeOULatmD-qAjQ" elementId="openType"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2078gA1IEeOULatmD-qAjQ" elementId="org.eclipse.search.OpenSearchDialogPage"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_YOHP4A0WEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.actionSet.presentation">
        <tags>Draggable</tags>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_3lUQkA1IEeOULatmD-qAjQ" elementId="Presentation"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_3lUQkQ1IEeOULatmD-qAjQ" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_3lU3oA1IEeOULatmD-qAjQ" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_3lU3oQ1IEeOULatmD-qAjQ" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_3lU3og1IEeOULatmD-qAjQ" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_3lVesA1IEeOULatmD-qAjQ" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_nqsvIQ0VEeO-8I6yck2Tzw" elementId="group.nav" toBeRendered="false">
        <tags>toolbarSeparator</tags>
        <children xsi:type="menu:ToolBarSeparator" xmi:id="_nqsvIg0VEeO-8I6yck2Tzw" elementId="group.nav" toBeRendered="false"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_nqtWMA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.workbench.navigate">
        <tags>Draggable</tags>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2v988Q1IEeOULatmD-qAjQ" elementId="history.group"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2v-kAA1IEeOULatmD-qAjQ" elementId="group.application" visible="false"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2v-kAQ1IEeOULatmD-qAjQ" elementId="backardHistory"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2v-kAg1IEeOULatmD-qAjQ" elementId="forwardHistory"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2v_LEA1IEeOULatmD-qAjQ" elementId="pin.group"/>
        <children xsi:type="menu:HandledToolItem" xmi:id="_2v_LEQ1IEeOULatmD-qAjQ" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.gif" tooltip="Pin the current editor" enabled="false" command="_nOWKUQ0VEeO-8I6yck2Tzw"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2078gQ1IEeOULatmD-qAjQ" elementId="org.eclipse.ui.edit.text.gotoNextAnnotation"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2078gg1IEeOULatmD-qAjQ" elementId="org.eclipse.ui.edit.text.gotoPreviousAnnotation"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_208jkA1IEeOULatmD-qAjQ" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_nqtWMQ0VEeO-8I6yck2Tzw" elementId="group.editor" toBeRendered="false">
        <tags>toolbarSeparator</tags>
        <children xsi:type="menu:ToolBarSeparator" xmi:id="_nqt9QA0VEeO-8I6yck2Tzw" elementId="group.editor" toBeRendered="false"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_nqt9QQ0VEeO-8I6yck2Tzw" elementId="group.help" toBeRendered="false">
        <tags>toolbarSeparator</tags>
        <children xsi:type="menu:ToolBarSeparator" xmi:id="_nqt9Qg0VEeO-8I6yck2Tzw" elementId="group.help" toBeRendered="false"/>
      </children>
      <children xsi:type="menu:ToolBar" xmi:id="_nqt9Qw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.workbench.help" visible="false">
        <tags>Draggable</tags>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2wBAQA1IEeOULatmD-qAjQ" elementId="group.help"/>
        <children xsi:type="menu:OpaqueToolItem" xmi:id="_2wBnUA1IEeOULatmD-qAjQ" elementId="group.application" visible="false"/>
      </children>
      <children xsi:type="menu:ToolControl" xmi:id="_nsGdUA0VEeO-8I6yck2Tzw" elementId="PerspectiveSpacer" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
        <tags>stretch</tags>
      </children>
      <children xsi:type="menu:ToolControl" xmi:id="_nsJgoA0VEeO-8I6yck2Tzw" elementId="Spacer Glue" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
        <tags>glue</tags>
      </children>
      <children xsi:type="menu:ToolControl" xmi:id="_nsLV0A0VEeO-8I6yck2Tzw" elementId="SearchField" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.quickaccess.SearchField"/>
      <children xsi:type="menu:ToolControl" xmi:id="_nsrsIA0VEeO-8I6yck2Tzw" elementId="Search-PS Glue" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
        <tags>glue</tags>
      </children>
      <children xsi:type="menu:ToolControl" xmi:id="_nss6QA0VEeO-8I6yck2Tzw" elementId="PerspectiveSwitcher" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher">
        <tags>Draggable</tags>
      </children>
    </trimBars>
    <trimBars xmi:id="_ns8K0A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.trim.status" side="Bottom">
      <children xsi:type="menu:ToolControl" xmi:id="_ns9Y8A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.StatusLine" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
        <tags>stretch</tags>
      </children>
      <children xsi:type="menu:ToolControl" xmi:id="_ntKNQA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.HeapStatus" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"/>
      <children xsi:type="menu:ToolControl" xmi:id="_ntPFwA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.ProgressBar" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
        <tags>Draggable</tags>
      </children>
    </trimBars>
    <trimBars xmi:id="_ntm5MA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.trim.vertical1" toBeRendered="false" side="Left">
      <children xsi:type="menu:ToolControl" xmi:id="_n_BZUA0VEeO-8I6yck2Tzw" elementId="PerspectiveStack(minimized)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack">
        <tags>TrimStack</tags>
      </children>
      <children xsi:type="menu:ToolControl" xmi:id="_pDFB4A0WEeO-8I6yck2Tzw" elementId="left(org.eclipse.jdt.ui.JavaPerspective)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack">
        <tags>TrimStack</tags>
      </children>
    </trimBars>
    <trimBars xmi:id="_ntouYA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.trim.vertical2" toBeRendered="false" side="Right">
      <children xsi:type="menu:ToolControl" xmi:id="_pDZyAA0WEeO-8I6yck2Tzw" elementId="right(org.eclipse.jdt.ui.JavaPerspective)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack">
        <tags>TrimStack</tags>
      </children>
      <children xsi:type="menu:ToolControl" xmi:id="_pDvJMA0WEeO-8I6yck2Tzw" elementId="bottom(org.eclipse.jdt.ui.JavaPerspective)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack">
        <tags>TrimStack</tags>
      </children>
      <children xsi:type="menu:ToolControl" xmi:id="_0AsFUA0eEeOIacLjN9pZUA" elementId="org.eclipse.ui.editorss(org.eclipse.jdt.ui.JavaPerspective)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack">
        <tags>TrimStack</tags>
      </children>
    </trimBars>
  </children>
  <handlers xmi:id="_nNAGgw0VEeO-8I6yck2Tzw" elementId="_UW9TY_r3Ed6gmo7caOxU9g" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.ExitHandler" command="_nNAtlg0VEeO-8I6yck2Tzw"/>
  <handlers xmi:id="_nNAGhA0VEeO-8I6yck2Tzw" elementId="_BESTZfr3Ed6gmo7caOxU04" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.swt/org.eclipse.e4.ui.internal.workbench.swt.handlers.ShowViewHandler" command="_nNAtlw0VEeO-8I6yck2Tzw"/>
  <handlers xmi:id="_nNAGhQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.ui.saveHandler" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.handlers.SaveHandler" command="_nNAtmQ0VEeO-8I6yck2Tzw"/>
  <handlers xmi:id="_nNAGhg0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.ui.saveAllHandler" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.handlers.SaveAllHandler" command="_nNAtmg0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nNAGhw0VEeO-8I6yck2Tzw" contributorURI="platform:/plugin/org.eclipse.ui.workbench" bindingContext="_nNAtkg0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nNAGiA0VEeO-8I6yck2Tzw" elementId="_UW9TZfr3Ed6gmo7caOxU9g" contributorURI="platform:/plugin/org.eclipse.ui.workbench" keySequence="CTRL+Q" command="_nNAtlg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nNAtkA0VEeO-8I6yck2Tzw" elementId="_oRr6EAFSEd-Z8rQksLwRYw" contributorURI="platform:/plugin/org.eclipse.ui.workbench" keySequence="CTRL+S" command="_nNAtmQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nNAtkQ0VEeO-8I6yck2Tzw" contributorURI="platform:/plugin/org.eclipse.ui.workbench" keySequence="CTRL+SHIFT+S" command="_nNAtmg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPjrQA0VEeO-8I6yck2Tzw" keySequence="CTRL+INSERT" command="_nObC5Q0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPlgcg0VEeO-8I6yck2Tzw" keySequence="CTRL+A" command="_nObC2w0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPn8sg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+I" command="_nOWKVA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPrABA0VEeO-8I6yck2Tzw" keySequence="CTRL+V" command="_nOX_hQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPrABQ0VEeO-8I6yck2Tzw" keySequence="CTRL+X" command="_nOgiag0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPrnEA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+Z" command="_nOi-pg0VEeO-8I6yck2Tzw">
      <tags>platform:gtk</tags>
    </bindings>
    <bindings xmi:id="_nPrnEQ0VEeO-8I6yck2Tzw" keySequence="CTRL+Z" command="_nOX_lw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP63oQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+V" command="_nOiXpg0VEeO-8I6yck2Tzw">
      <tags>platform:gtk</tags>
    </bindings>
    <bindings xmi:id="_nP-iAA0VEeO-8I6yck2Tzw" keySequence="ALT+/" command="_nOdfFQ0VEeO-8I6yck2Tzw">
      <tags>locale:zh</tags>
      <tags>deleted</tags>
    </bindings>
    <bindings xmi:id="_nP_wIg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+L" command="_nOXYdw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP_wIw0VEeO-8I6yck2Tzw" keySequence="CTRL+1" command="_nOfUQQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQA-QA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+F3" command="_nOoeMw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQBlUQ0VEeO-8I6yck2Tzw" keySequence="CTRL+F10" command="_nOcQ-A0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQF2wA0VEeO-8I6yck2Tzw" keySequence="SHIFT+INSERT" command="_nOX_hQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQVHUg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+D" command="_nOiXpg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQVuYA0VEeO-8I6yck2Tzw" keySequence="SHIFT+DEL" command="_nOgiag0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQWVcg0VEeO-8I6yck2Tzw" keySequence="ALT+PAGE_UP" command="_nOc4Cw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQXjkA0VEeO-8I6yck2Tzw" keySequence="CTRL+C" command="_nObC5Q0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQYxsQ0VEeO-8I6yck2Tzw" keySequence="ALT+PAGE_DOWN" command="_nOhJcw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_zLCJUA0WEeO-8I6yck2Tzw" keySequence="CTRL+P" command="_nOdfFQ0VEeO-8I6yck2Tzw">
      <tags>type:user</tags>
    </bindings>
  </bindingTables>
  <bindingTables xmi:id="_nPcWgA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.cEditorScope" bindingContext="_nOxBGg0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nPh2EA0VEeO-8I6yck2Tzw" keySequence="CTRL+I" command="_nOZNoA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPjEMg0VEeO-8I6yck2Tzw" keySequence="CTRL+TAB" command="_nOnQHg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPlgcA0VEeO-8I6yck2Tzw" keySequence="ALT+C" command="_nOXYcA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPmukA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+F" command="_nOmB9Q0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPnVoA0VEeO-8I6yck2Tzw" keySequence="ALT+CTRL+I" command="_nOpsUw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPpx4A0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+ARROW_UP" command="_nOnQGw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPuqYg0VEeO-8I6yck2Tzw" keySequence="CTRL+O" command="_nOkMyg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPvRcg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+P" command="_nOdfGw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPv4gQ0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+L" command="_nOU8Og0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPv4gw0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+M" command="_nOX_gw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPwfkg0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+R" command="_nOn3NA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPxGog0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+O" command="_nOhJdg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPxtsA0VEeO-8I6yck2Tzw" keySequence="ALT+CTRL+S" command="_nOdfHg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPxtsQ0VEeO-8I6yck2Tzw" keySequence="F4" command="_nOhwkQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPyUwA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+T" command="_nOiXlA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPy70Q0VEeO-8I6yck2Tzw" keySequence="F3" command="_nOgiaA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP0J8A0VEeO-8I6yck2Tzw" keySequence="CTRL+/" command="_nOkz1A0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP2mMw0VEeO-8I6yck2Tzw" keySequence="CTRL+T" command="_nOUVIg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP30Ug0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+T" command="_nObp5g0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP4bYQ0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Z" command="_nOkz4g0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP5CcQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+/" command="_nOdfGA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP6QkA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+S" command="_nOjlwA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP6Qkg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+N" command="_nOVjQQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQCzdA0VEeO-8I6yck2Tzw" keySequence="CTRL+G" command="_nOi-qw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQEBkg0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+ARROW_DOWN" command="_nOmB8A0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQEooQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+ARROW_UP" command="_nOla4A0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQFPsg0VEeO-8I6yck2Tzw" keySequence="SHIFT+TAB" command="_nOmpEg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQGd1A0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_nOetOQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQHE4Q0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+H" command="_nOZ0vQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQHr8Q0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+\" command="_nOiXoA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQITAQ0VEeO-8I6yck2Tzw" keySequence="CTRL+=" command="_nOX_kQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQSEAg0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+ARROW_LEFT" command="_nObp5A0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQTSIQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_nOf7Vg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQWVcw0VEeO-8I6yck2Tzw" keySequence="CTRL+#" command="_nOX_kQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQXjkQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+G" command="_nOhJeg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQYxsg0VEeO-8I6yck2Tzw" keySequence="ALT+CTRL+H" command="_nOkMzg0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nPidIA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.javaEditorScope" bindingContext="_nOxBGw0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nPidIQ0VEeO-8I6yck2Tzw" keySequence="CTRL+I" command="_nObp7A0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPmukQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+F" command="_nOiXpQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPpx4Q0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+ARROW_UP" command="_nOf7Uw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPuqYQ0VEeO-8I6yck2Tzw" keySequence="CTRL+F3" command="_nOetNg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPvRcA0VEeO-8I6yck2Tzw" keySequence="CTRL+O" command="_nOabxA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPvRcw0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+P" command="_nOc4CA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPxGow0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+O" command="_nOTuFQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP0J8Q0VEeO-8I6yck2Tzw" keySequence="CTRL+/" command="_nOWKVQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP3NQA0VEeO-8I6yck2Tzw" keySequence="CTRL+T" command="_nObp8w0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP5CcA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+U" command="_nOkM0w0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP5Ccg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+/" command="_nOWKVw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP5pgQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+M" command="_nOi-sw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP5pgg0VEeO-8I6yck2Tzw" keySequence="CTRL+7" command="_nOWKVQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQEBkw0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+ARROW_DOWN" command="_nObC0A0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQEoog0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+ARROW_UP" command="_nOfUTQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQEopA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+B" command="_nOi-ow0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQGd0Q0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+C" command="_nOWKVQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQGd1Q0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_nOoeOg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQHr8g0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+\" command="_nOoePQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQI6EQ0VEeO-8I6yck2Tzw" keySequence="CTRL+2 F" command="_nOkMyw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQI6Eg0VEeO-8I6yck2Tzw" keySequence="CTRL+2 L" command="_nOcQ8w0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQI6Ew0VEeO-8I6yck2Tzw" keySequence="CTRL+2 R" command="_nOYmmA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQSEAw0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+ARROW_LEFT" command="_nOmB_g0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQTSIg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_nOoeOQ0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nPjEMA0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" bindingContext="_nOxBEQ0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nPjEMQ0VEeO-8I6yck2Tzw" keySequence="CTRL+I" command="_nOWKVg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPmukg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+F" command="_nOcQ9Q0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPn8sA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+>" command="_nObp5w0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPpx4g0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+ARROW_UP" command="_nOTuGw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPvRcQ0VEeO-8I6yck2Tzw" keySequence="CTRL+O" command="_nOiXoQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPv4gA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+P" command="_nOmB8Q0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPzi4Q0VEeO-8I6yck2Tzw" keySequence="F3" command="_nOeGLw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP5Ccw0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+/" command="_nOf7UQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQEBkQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+A" command="_nOnQEA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQEooA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+ARROW_DOWN" command="_nOabyQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQEoow0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+ARROW_UP" command="_nOmB_Q0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQGd0w0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+C" command="_nOZ0sw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQHE4A0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_nOjlwg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQHr8w0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+\" command="_nOhJfA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQSrEA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+ARROW_LEFT" command="_nOnQGQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQTSIw0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_nOYmpg0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nPjrQQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.contexts.window" bindingContext="_nNAtkw0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nPjrQg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_nOU8Mg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPkSUg0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+D T" command="_nOeGMg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPk5YA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+D A" command="_nOjluA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPk5YQ0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+D J" command="_nOmB8w0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPlgcQ0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+D Q" command="_nOiXlw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPmHgA0VEeO-8I6yck2Tzw" keySequence="ALT+ARROW_LEFT" command="_nOfUSg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPnVow0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+?" command="_nOla6g0VEeO-8I6yck2Tzw">
      <tags>locale:zh</tags>
    </bindings>
    <bindings xmi:id="_nPojwA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+J" command="_nOpsVg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPojww0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+A D" command="_nOpsWg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPpK0A0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+A S" command="_nOeGIw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPpK0Q0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+A R" command="_nOoeQA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPpx5A0VEeO-8I6yck2Tzw" keySequence="ALT+ARROW_RIGHT" command="_nOi-sA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPqY8A0VEeO-8I6yck2Tzw" keySequence="CTRL+B" command="_nOU8MA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPqY8g0VEeO-8I6yck2Tzw" keySequence="ALT+-" command="_nOf7Ug0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPqY8w0VEeO-8I6yck2Tzw" keySequence="CTRL+," command="_nOX_hw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPrAAA0VEeO-8I6yck2Tzw" keySequence="CTRL+." command="_nOabww0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPrAAQ0VEeO-8I6yck2Tzw" keySequence="DEL" command="_nOXYeA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPrnFA0VEeO-8I6yck2Tzw" keySequence="F5" command="_nOZNoQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPsOIQ0VEeO-8I6yck2Tzw" keySequence="ALT+CR" command="_nOkMww0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPsOIg0VEeO-8I6yck2Tzw" keySequence="CTRL+P" command="_nOi-rw0VEeO-8I6yck2Tzw">
      <tags>deleted</tags>
    </bindings>
    <bindings xmi:id="_nPs1MA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+S" command="_nOcQ8Q0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPs1MQ0VEeO-8I6yck2Tzw" keySequence="CTRL+S" command="_nOetPg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPs1Mg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+F4" command="_nOn3MQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPtcQA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+W" command="_nOn3MQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPtcQQ0VEeO-8I6yck2Tzw" keySequence="CTRL+F4" command="_nObC3A0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPtcRA0VEeO-8I6yck2Tzw" keySequence="CTRL+W" command="_nObC3A0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPuDUQ0VEeO-8I6yck2Tzw" keySequence="CTRL+N" command="_nObC3g0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPuDUg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+U" command="_nOWxZA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPuqYA0VEeO-8I6yck2Tzw" keySequence="SHIFT+F2" command="_nOla5A0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPv4gg0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+L" command="_nOmB-g0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPwfkA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+M" command="_nOmpAw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPxGoA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+R" command="_nOgiZA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPxtsw0VEeO-8I6yck2Tzw" keySequence="F4" command="_nOetRA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPyUwg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+T" command="_nOeGLg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPzi4A0VEeO-8I6yck2Tzw" keySequence="F3" command="_nOgidQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP0xAg0VEeO-8I6yck2Tzw" keySequence="SHIFT+F9" command="_nOkz3A0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP0xAw0VEeO-8I6yck2Tzw" keySequence="F9" command="_nOcQ_Q0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP1YEQ0VEeO-8I6yck2Tzw" keySequence="SHIFT+F5" command="_nOYmlQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP1_Ig0VEeO-8I6yck2Tzw" keySequence="F11" command="_nOYmkg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP2mMA0VEeO-8I6yck2Tzw" keySequence="CTRL+F11" command="_nOjlsg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP3NQw0VEeO-8I6yck2Tzw" keySequence="F2" command="_nOabwA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP30UQ0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+V" command="_nOZNqg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP4bYA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+T" command="_nOjltg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP4bYg0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Z" command="_nOVjSQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP5pgA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+O" command="_nOhwgQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP6QkQ0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+S" command="_nOX_iA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP63oA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+N" command="_nOTuFg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP63og0VEeO-8I6yck2Tzw" keySequence="CTRL+U" command="_nOpsXA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP7esQ0VEeO-8I6yck2Tzw" keySequence="CTRL+-" command="_nOf7Xw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP8FwQ0VEeO-8I6yck2Tzw" keySequence="F12" command="_nOhwgA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP8s0A0VEeO-8I6yck2Tzw" keySequence="CTRL+M" command="_nOcRAg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP8s0Q0VEeO-8I6yck2Tzw" keySequence="CTRL+F6" command="_nOZNqw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP8s0g0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+F6" command="_nOcQ_g0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP9T4A0VEeO-8I6yck2Tzw" keySequence="CTRL+F7" command="_nOjlxA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP9T4Q0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+F7" command="_nOeGJA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP968A0VEeO-8I6yck2Tzw" keySequence="CTRL+F8" command="_nOpFUg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP968Q0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+F8" command="_nOeGMA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP-iAQ0VEeO-8I6yck2Tzw" keySequence="ALT+F7" command="_nOfURw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP-iAg0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+F7" command="_nObp7g0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP_JEg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_nOiXmg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP_wJA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+R" command="_nObp7w0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQAXMA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+W" command="_nOZ0wA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQAXMQ0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+N" command="_nOX_kw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQAXMg0VEeO-8I6yck2Tzw" keySequence="CTRL+3" command="_nOoeNQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQBlUw0VEeO-8I6yck2Tzw" keySequence="CTRL+Q" command="_nOhwjQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQDagg0VEeO-8I6yck2Tzw" keySequence="CTRL+G" command="_nOabyw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQFPsw0VEeO-8I6yck2Tzw" keySequence="CTRL+H" command="_nOkMxA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQHE4w0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+H" command="_nOUVKg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQHr8A0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+I" command="_nObC4g0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQITAA0VEeO-8I6yck2Tzw" keySequence="CTRL+E" command="_nOXYgg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQITAg0VEeO-8I6yck2Tzw" keySequence="CTRL+=" command="_nOfUQA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQI6EA0VEeO-8I6yck2Tzw" keySequence="ALT+?" command="_nOla6g0VEeO-8I6yck2Tzw">
      <tags>locale:zh</tags>
    </bindings>
    <bindings xmi:id="_nQJhIA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+X T" command="_nOkMwg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQJhIQ0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+X A" command="_nOpFRA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQJhIg0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+X J" command="_nOjluQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQKvQA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q V" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQKvQQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/>
    </bindings>
    <bindings xmi:id="_nQKvQg0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q B" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQKvQw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/>
    </bindings>
    <bindings xmi:id="_nQLWUA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+X Q" command="_nOfUTw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQLWUQ0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q T" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQLWUg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.TypeHierarchy"/>
    </bindings>
    <bindings xmi:id="_nQL9YA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q P" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQL9YQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.PackageExplorer"/>
    </bindings>
    <bindings xmi:id="_nQL9Yg0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q D" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQL9Yw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.SourceView"/>
    </bindings>
    <bindings xmi:id="_nQMkcA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q J" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQMkcQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.JavadocView"/>
    </bindings>
    <bindings xmi:id="_nQNLgA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q S" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQNLgQ0VEeO-8I6yck2Tzw" 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="_nQNykA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q Y" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQNykQ0VEeO-8I6yck2Tzw" 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="_nQOZoA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q Z" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQOZoQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/>
    </bindings>
    <bindings xmi:id="_nQPAsA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q H" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQPAsQ0VEeO-8I6yck2Tzw" 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="_nQPnwA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q C" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQQO0A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/>
    </bindings>
    <bindings xmi:id="_nQQO0Q0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q Q" command="_nOn3Jg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQQ14A0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q X" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQQ14Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/>
    </bindings>
    <bindings xmi:id="_nQRc8A0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q O" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQRc8Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/>
    </bindings>
    <bindings xmi:id="_nQSEAA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+Q L" command="_nOn3Jg0VEeO-8I6yck2Tzw">
      <parameters xmi:id="_nQSEAQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/>
    </bindings>
    <bindings xmi:id="_nQSrEQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+B" command="_nOhwig0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQTSIA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+C" command="_nOkMzA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQT5MA0VEeO-8I6yck2Tzw" keySequence="ALT+CTRL+G" command="_nOXYfA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQUgQQ0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+F" command="_nOoePA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQVHUA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+E" command="_nOdfIg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQVuYQ0VEeO-8I6yck2Tzw" keySequence="CTRL+F" command="_nOgibA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQW8gA0VEeO-8I6yck2Tzw" keySequence="CTRL+#" command="_nOhJeQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQYKoA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+G" command="_nOX_gA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQZYwQ0VEeO-8I6yck2Tzw" keySequence="ALT+CTRL+H" command="_nOX_jA0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nPjrQw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.textEditorScope" bindingContext="_nOwaDQ0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nPjrRA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_nOWxYA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPkSUA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+J" command="_nOhJhA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPkSUQ0VEeO-8I6yck2Tzw" keySequence="CTRL+ARROW_UP" command="_nOi-rA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPn8sQ0VEeO-8I6yck2Tzw" keySequence="ALT+CTRL+ARROW_UP" command="_nOjlsw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPojwQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+INSERT" command="_nOgidA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPojwg0VEeO-8I6yck2Tzw" keySequence="ALT+ARROW_DOWN" command="_nOgiaw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPpK0g0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+A" command="_nOetPQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPqY8Q0VEeO-8I6yck2Tzw" keySequence="CTRL+ARROW_DOWN" command="_nOi-pA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP3NQg0VEeO-8I6yck2Tzw" keySequence="ALT+CTRL+/" command="_nOpsUA0VEeO-8I6yck2Tzw">
      <tags>locale:zh</tags>
    </bindings>
    <bindings xmi:id="_nP30UA0VEeO-8I6yck2Tzw" keySequence="F2" command="_nOWxbw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP-iAw0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+Q" command="_nOgibg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP_JEA0VEeO-8I6yck2Tzw" keySequence="CTRL+NUMPAD_DIVIDE" command="_nOiXnA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP_JEQ0VEeO-8I6yck2Tzw" keySequence="CTRL+NUMPAD_MULTIPLY" command="_nOdfFg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP_JEw0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_nOc4Ag0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP_wIA0VEeO-8I6yck2Tzw" keySequence="CTRL+NUMPAD_ADD" command="_nOetMw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP_wIQ0VEeO-8I6yck2Tzw" keySequence="CTRL+NUMPAD_SUBTRACT" command="_nOjlvw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQA-QQ0VEeO-8I6yck2Tzw" keySequence="CTRL+K" command="_nOnQFA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQA-Qg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+K" command="_nOn3Iw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQA-Qw0VEeO-8I6yck2Tzw" keySequence="CTRL+J" command="_nOcQ-g0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQA-RA0VEeO-8I6yck2Tzw" keySequence="CTRL+L" command="_nOhJcQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQBlUA0VEeO-8I6yck2Tzw" keySequence="INSERT" command="_nOXYcQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQBlUg0VEeO-8I6yck2Tzw" keySequence="CTRL+F10" command="_nOfURA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQBlVA0VEeO-8I6yck2Tzw" keySequence="SHIFT+CR" command="_nOc4Dg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQCMYA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+CR" command="_nOU8OQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQCMYQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+X" command="_nOmB8g0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQCMYg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+Y" command="_nOf7VA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQCMYw0VEeO-8I6yck2Tzw" keySequence="END" command="_nOoeOw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQCzcQ0VEeO-8I6yck2Tzw" keySequence="HOME" command="_nOetNw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQCzcg0VEeO-8I6yck2Tzw" keySequence="CTRL+HOME" command="_nOkMwQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQDagw0VEeO-8I6yck2Tzw" keySequence="SHIFT+END" command="_nOU8Ng0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQDahA0VEeO-8I6yck2Tzw" keySequence="CTRL+DEL" command="_nOX_lQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQEBkA0VEeO-8I6yck2Tzw" keySequence="ALT+ARROW_UP" command="_nOkMyA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQFPsQ0VEeO-8I6yck2Tzw" keySequence="CTRL+BS" command="_nOZ0sg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQF2wQ0VEeO-8I6yck2Tzw" keySequence="ALT+CTRL+J" command="_nOi-qg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQF2wg0VEeO-8I6yck2Tzw" keySequence="CTRL+END" command="_nOXYcg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQGd0A0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_nOgiYA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQT5MQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+DEL" command="_nOZNqA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQUgQA0VEeO-8I6yck2Tzw" keySequence="ALT+CTRL+ARROW_DOWN" command="_nOkMzQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQVHUQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_nOoeMQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQWVcA0VEeO-8I6yck2Tzw" keySequence="SHIFT+HOME" command="_nOhJfg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQWVcQ0VEeO-8I6yck2Tzw" keySequence="CTRL+ARROW_LEFT" command="_nOYmnQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQYKoQ0VEeO-8I6yck2Tzw" keySequence="CTRL+ARROW_RIGHT" command="_nOkz0A0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQYxsA0VEeO-8I6yck2Tzw" keySequence="CTRL+D" command="_nOcQ9w0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nPlgcw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.macroExpansionHoverScope" bindingContext="_nOxoIA0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nPlgdA0VEeO-8I6yck2Tzw" keySequence="ALT+ARROW_LEFT" command="_nOVjRg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPpx4w0VEeO-8I6yck2Tzw" keySequence="ALT+ARROW_RIGHT" command="_nOhJgg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPy70w0VEeO-8I6yck2Tzw" keySequence="F3" command="_nOgiaA0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nPmHgQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ant.ui.AntEditorScope" bindingContext="_nOxBEA0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nPmHgg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+F" command="_nOiXpQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPuDUw0VEeO-8I6yck2Tzw" keySequence="SHIFT+F2" command="_nObp5Q0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPwfkQ0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+R" command="_nOVjRQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPxGoQ0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+O" command="_nOn3JQ0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nPnVoQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.cViewScope" bindingContext="_nOwaBQ0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nPnVog0VEeO-8I6yck2Tzw" keySequence="ALT+CTRL+I" command="_nOpsUw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPwfkw0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+R" command="_nOn3NA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPxtsg0VEeO-8I6yck2Tzw" keySequence="F4" command="_nOhwkQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPyUwQ0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+T" command="_nOiXlA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPy70g0VEeO-8I6yck2Tzw" keySequence="F3" command="_nOgiaA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQDagA0VEeO-8I6yck2Tzw" keySequence="CTRL+G" command="_nOi-qw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQHE4g0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+H" command="_nOZ0vQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQXjkg0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+G" command="_nOhJeg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQZYwA0VEeO-8I6yck2Tzw" keySequence="ALT+CTRL+H" command="_nOkMzg0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nPrAAg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_nOwaAw0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nPrAAw0VEeO-8I6yck2Tzw" keySequence="CTRL+V" command="_nOX_hA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQW8gQ0VEeO-8I6yck2Tzw" keySequence="CTRL+C" command="_nOX_iQ0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nPrnEg0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.debugging" bindingContext="_nOwaBg0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nPrnEw0VEeO-8I6yck2Tzw" keySequence="F5" command="_nOi-qA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP1YEg0VEeO-8I6yck2Tzw" keySequence="F6" command="_nOVjRA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP1YEw0VEeO-8I6yck2Tzw" keySequence="F7" command="_nOoeNw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP1_IA0VEeO-8I6yck2Tzw" keySequence="F8" command="_nOpsWw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP1_IQ0VEeO-8I6yck2Tzw" keySequence="CTRL+F2" command="_nOdfHA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP2mMQ0VEeO-8I6yck2Tzw" keySequence="CTRL+R" command="_nObp4w0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP7esA0VEeO-8I6yck2Tzw" keySequence="CTRL+F5" command="_nOgibQ0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nPrnFQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_nOwaCg0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nPsOIA0VEeO-8I6yck2Tzw" keySequence="ALT+CR" command="_nOi-sQ0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nPtcQg0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_nOxBHw0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nPtcQw0VEeO-8I6yck2Tzw" keySequence="CTRL+W" command="_nOeGKA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPuDUA0VEeO-8I6yck2Tzw" keySequence="CTRL+N" command="_nOf7WA0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP2mMg0VEeO-8I6yck2Tzw" keySequence="ALT+CTRL+M" command="_nOVjSg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP2mNA0VEeO-8I6yck2Tzw" keySequence="CTRL+T" command="_nOhwjw0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP3NQQ0VEeO-8I6yck2Tzw" keySequence="ALT+CTRL+N" command="_nOWxcg0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nPyUww0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.make.ui.makefileEditorScope" bindingContext="_nOxBGQ0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nPy70A0VEeO-8I6yck2Tzw" keySequence="F3" command="_nOpsVQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nPzi4g0VEeO-8I6yck2Tzw" keySequence="CTRL+/" command="_nOnQGg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQF2ww0VEeO-8I6yck2Tzw" keySequence="CTRL+\" command="_nOdfIQ0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nP0J8g0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.propertiesEditorScope" bindingContext="_nOxBIQ0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nP0J8w0VEeO-8I6yck2Tzw" keySequence="CTRL+/" command="_nOWKVQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP5pgw0VEeO-8I6yck2Tzw" keySequence="CTRL+7" command="_nOWKVQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQGd0g0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+C" command="_nOWKVQ0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nP0J9A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.debugging" bindingContext="_nOwaCw0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nP0J9Q0VEeO-8I6yck2Tzw" keySequence="SHIFT+F6" command="_nObp9Q0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP0xAA0VEeO-8I6yck2Tzw" keySequence="SHIFT+F8" command="_nOhwhg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP0xAQ0VEeO-8I6yck2Tzw" keySequence="SHIFT+F7" command="_nOZNtg0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP1YEA0VEeO-8I6yck2Tzw" keySequence="SHIFT+F5" command="_nOX_jg0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nP7esg0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_nOwaCA0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nP7esw0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+," command="_nOn3Ig0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nP8FwA0VEeO-8I6yck2Tzw" keySequence="CTRL+SHIFT+." command="_nOTuEQ0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQDagQ0VEeO-8I6yck2Tzw" keySequence="CTRL+G" command="_nOdfIA0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nQCMZA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.context" bindingContext="_nOwaBw0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nQCzcA0VEeO-8I6yck2Tzw" keySequence="HOME" command="_nOZNow0VEeO-8I6yck2Tzw"/>
    <bindings xmi:id="_nQCzcw0VEeO-8I6yck2Tzw" keySequence="CTRL+G" command="_nOTuFw0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nQEopQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" bindingContext="_nOxBIw0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nQFPsA0VEeO-8I6yck2Tzw" keySequence="ALT+SHIFT+B" command="_nOi-ow0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nQW8gg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_nOwaBA0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nQW8gw0VEeO-8I6yck2Tzw" keySequence="CTRL+C" command="_nObC3Q0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nQYKog0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.console" bindingContext="_nOwaDA0VEeO-8I6yck2Tzw">
    <bindings xmi:id="_nQYKow0VEeO-8I6yck2Tzw" keySequence="CTRL+D" command="_nOc4Bw0VEeO-8I6yck2Tzw"/>
  </bindingTables>
  <bindingTables xmi:id="_nZMvcQ0VEeO-8I6yck2Tzw" bindingContext="_nZMvcA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZN9kQ0VEeO-8I6yck2Tzw" bindingContext="_nZN9kA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZOkoQ0VEeO-8I6yck2Tzw" bindingContext="_nZOkoA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZOkow0VEeO-8I6yck2Tzw" bindingContext="_nZOkog0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZPLsQ0VEeO-8I6yck2Tzw" bindingContext="_nZPLsA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZPLsw0VEeO-8I6yck2Tzw" bindingContext="_nZPLsg0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZPywQ0VEeO-8I6yck2Tzw" bindingContext="_nZPywA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZRn8Q0VEeO-8I6yck2Tzw" bindingContext="_nZRn8A0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZS2EQ0VEeO-8I6yck2Tzw" bindingContext="_nZS2EA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZUEMA0VEeO-8I6yck2Tzw" bindingContext="_nZTdIQ0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZUEMg0VEeO-8I6yck2Tzw" bindingContext="_nZUEMQ0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZUrQQ0VEeO-8I6yck2Tzw" bindingContext="_nZUrQA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZUrQw0VEeO-8I6yck2Tzw" bindingContext="_nZUrQg0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZVSUQ0VEeO-8I6yck2Tzw" bindingContext="_nZVSUA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZV5YA0VEeO-8I6yck2Tzw" bindingContext="_nZVSUg0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZV5Yg0VEeO-8I6yck2Tzw" bindingContext="_nZV5YQ0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZWgcQ0VEeO-8I6yck2Tzw" bindingContext="_nZWgcA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nZWgcw0VEeO-8I6yck2Tzw" bindingContext="_nZWgcg0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwspcQ0VEeO-8I6yck2Tzw" bindingContext="_nwspcA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwtQgQ0VEeO-8I6yck2Tzw" bindingContext="_nwtQgA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwt3kQ0VEeO-8I6yck2Tzw" bindingContext="_nwt3kA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwt3kw0VEeO-8I6yck2Tzw" bindingContext="_nwt3kg0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwueoQ0VEeO-8I6yck2Tzw" bindingContext="_nwueoA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwvFsQ0VEeO-8I6yck2Tzw" bindingContext="_nwvFsA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwvswQ0VEeO-8I6yck2Tzw" bindingContext="_nwvswA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwwT0Q0VEeO-8I6yck2Tzw" bindingContext="_nwwT0A0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwwT0w0VEeO-8I6yck2Tzw" bindingContext="_nwwT0g0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nww64Q0VEeO-8I6yck2Tzw" bindingContext="_nww64A0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwxh8Q0VEeO-8I6yck2Tzw" bindingContext="_nwxh8A0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwxh8w0VEeO-8I6yck2Tzw" bindingContext="_nwxh8g0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwyJAQ0VEeO-8I6yck2Tzw" bindingContext="_nwyJAA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwywEQ0VEeO-8I6yck2Tzw" bindingContext="_nwywEA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwywEw0VEeO-8I6yck2Tzw" bindingContext="_nwywEg0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwzXIQ0VEeO-8I6yck2Tzw" bindingContext="_nwzXIA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nwz-MQ0VEeO-8I6yck2Tzw" bindingContext="_nwz-MA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw0lQA0VEeO-8I6yck2Tzw" bindingContext="_nwz-Mg0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw1MUA0VEeO-8I6yck2Tzw" bindingContext="_nw0lQQ0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw1MUg0VEeO-8I6yck2Tzw" bindingContext="_nw1MUQ0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw1zYQ0VEeO-8I6yck2Tzw" bindingContext="_nw1zYA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw2acQ0VEeO-8I6yck2Tzw" bindingContext="_nw2acA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw3BgA0VEeO-8I6yck2Tzw" bindingContext="_nw2acg0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw3Bgg0VEeO-8I6yck2Tzw" bindingContext="_nw3BgQ0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw3okQ0VEeO-8I6yck2Tzw" bindingContext="_nw3okA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw4PoQ0VEeO-8I6yck2Tzw" bindingContext="_nw4PoA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw42sQ0VEeO-8I6yck2Tzw" bindingContext="_nw42sA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw5dwA0VEeO-8I6yck2Tzw" bindingContext="_nw42sg0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw6E0A0VEeO-8I6yck2Tzw" bindingContext="_nw5dwQ0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw6r4A0VEeO-8I6yck2Tzw" bindingContext="_nw6E0Q0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw7S8Q0VEeO-8I6yck2Tzw" bindingContext="_nw7S8A0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw76AQ0VEeO-8I6yck2Tzw" bindingContext="_nw76AA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw8hEQ0VEeO-8I6yck2Tzw" bindingContext="_nw8hEA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw9IIQ0VEeO-8I6yck2Tzw" bindingContext="_nw9IIA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw9vMQ0VEeO-8I6yck2Tzw" bindingContext="_nw9vMA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw9vMw0VEeO-8I6yck2Tzw" bindingContext="_nw9vMg0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw-WQQ0VEeO-8I6yck2Tzw" bindingContext="_nw-WQA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw-9UQ0VEeO-8I6yck2Tzw" bindingContext="_nw-9UA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw_kYA0VEeO-8I6yck2Tzw" bindingContext="_nw-9Ug0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nw_kYg0VEeO-8I6yck2Tzw" bindingContext="_nw_kYQ0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nxALcQ0VEeO-8I6yck2Tzw" bindingContext="_nxALcA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nxAygQ0VEeO-8I6yck2Tzw" bindingContext="_nxAygA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nxBZkA0VEeO-8I6yck2Tzw" bindingContext="_nxAygg0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nxBZkg0VEeO-8I6yck2Tzw" bindingContext="_nxBZkQ0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nxCAoQ0VEeO-8I6yck2Tzw" bindingContext="_nxCAoA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nxCnsQ0VEeO-8I6yck2Tzw" bindingContext="_nxCnsA0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_nxCnsw0VEeO-8I6yck2Tzw" bindingContext="_nxCnsg0VEeO-8I6yck2Tzw"/>
  <bindingTables xmi:id="_uAvfoQ0fEeOIacLjN9pZUA" bindingContext="_uAvfoA0fEeOIacLjN9pZUA"/>
  <rootContext xmi:id="_nNAtkg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.contexts.dialogAndWindow" contributorURI="platform:/plugin/org.eclipse.ui.workbench" name="In Dialogs and Windows" description="Either a dialog or a window is open">
    <children xmi:id="_nNAtkw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.ui.workbench" name="In Windows" description="A window is open">
      <children xmi:id="_nNAtlA0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.ui.workbench" name="%bindingcontext.name.bindingView"/>
      <children xmi:id="_nOwaAQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/>
      <children xmi:id="_nOwaAw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View"/>
      <children xmi:id="_nOwaBA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/>
      <children xmi:id="_nOwaBQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.cViewScope" name="In C/C++ Views" description="In C/C++ Views"/>
      <children xmi:id="_nOwaBg0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging Programs">
        <children xmi:id="_nOwaBw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.context" name="In Disassembly" description="When debugging in assembly mode"/>
        <children xmi:id="_nOwaCA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/>
        <children xmi:id="_nOwaCw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.debugging" name="Debugging C/C++" description="Debugging C/C++ Programs"/>
        <children xmi:id="_nOxBHA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.debugging" name="Debugging Java" description="Debugging Java programs"/>
      </children>
      <children xmi:id="_nOwaCg0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/>
      <children xmi:id="_nOwaDA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O Console"/>
      <children xmi:id="_nOwaDQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context">
        <children xmi:id="_nOxBEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ant.ui.AntEditorScope" name="Editing Ant Buildfiles" description="Editing Ant Buildfiles Context"/>
        <children xmi:id="_nOxBEQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors">
          <children xmi:id="_nOxBEg0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.occurrences" name="XML Source Occurrences" description="XML Source Occurrences"/>
          <children xmi:id="_nOxBEw0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.navigation" name="XML Source Navigation" description="XML Source Navigation"/>
          <children xmi:id="_nOxBFA0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.cleanup" name="XML Source Cleanup" description="XML Source Cleanup"/>
          <children xmi:id="_nOxBFQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.grammar" name="XML Source Grammar" description="XML Source Grammar"/>
          <children xmi:id="_nOxBFg0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.comments" name="Source Comments in Structured Text Editors" description="Source Comments in Structured Text Editors"/>
          <children xmi:id="_nOxBFw0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.selection" name="XML Source Selection" description="XML Source Selection"/>
          <children xmi:id="_nOxBGA0VEeO-8I6yck2Tzw" elementId="org.eclipse.core.runtime.xml" name="Editing XML Source" description="Editing XML Source"/>
          <children xmi:id="_nOxBIA0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.comments" name="XML Source Comments" description="XML Source Comments"/>
          <children xmi:id="_nOxBJA0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.dependencies" name="XML Source Dependencies" description="XML Source Dependencies"/>
          <children xmi:id="_nOxoIQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.expand" name="XML Source Expand/Collapse" description="XML Source Expand/Collapse"/>
        </children>
        <children xmi:id="_nOxBGQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.make.ui.makefileEditorScope" name="Makefile Editor" description="Editor for makefiles"/>
        <children xmi:id="_nOxBGg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.cEditorScope" name="C/C++ Editor" description="Editor for C/C++ Source Files"/>
        <children xmi:id="_nOxBGw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.javaEditorScope" name="Editing Java Source" description="Editing Java Source Context"/>
        <children xmi:id="_nOxBHg0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xsd.ui.text.editor.context" name="Editing XSD context"/>
        <children xmi:id="_nOxBIQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.propertiesEditorScope" name="Editing Properties Files" description="Editing Properties Files Context"/>
      </children>
      <children xmi:id="_nOxBHw0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In Memory View"/>
      <children xmi:id="_nOxBIg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/>
    </children>
    <children xmi:id="_nNAtlQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.ui.workbench" name="In Dialogs" description="A dialog is open"/>
    <children xmi:id="_nOxoIA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.macroExpansionHoverScope" name="In Macro Expansion Hover" description="In Macro Expansion Hover"/>
  </rootContext>
  <rootContext xmi:id="_nOwaAA0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xsd.ui.editor.designView" name="XSD Editor Design View" description="XSD Editor Design View"/>
  <rootContext xmi:id="_nOwaAg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/>
  <rootContext xmi:id="_nOwaCQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xsd.ui.editor.sourceView" name="XSD Editor Source View" description="XSD Editor Source View"/>
  <rootContext xmi:id="_nOxBHQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/>
  <rootContext xmi:id="_nOxBIw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" name="Editor Breadcrumb Navigation" description="Editor Breadcrumb Navigation Context"/>
  <rootContext xmi:id="_nZMvcA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ant.ui.OpenExternalDocAction" name="Auto::org.eclipse.ant.ui.OpenExternalDocAction"/>
  <rootContext xmi:id="_nZN9kA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" name="Auto::org.eclipse.ant.ui.actions.ManageBreakpointRulerAction"/>
  <rootContext xmi:id="_nZOkoA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.CEditor.RulerTobbleBreakpointAction" name="Auto::org.eclipse.cdt.debug.ui.CEditor.RulerTobbleBreakpointAction"/>
  <rootContext xmi:id="_nZOkog0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.texteditor.BookmarkRulerAction" name="Auto::org.eclipse.ui.texteditor.BookmarkRulerAction"/>
  <rootContext xmi:id="_nZPLsA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.internal.ui.text.correction.CSelectRulerAction" name="Auto::org.eclipse.cdt.internal.ui.text.correction.CSelectRulerAction"/>
  <rootContext xmi:id="_nZPLsg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" name="Auto::org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction"/>
  <rootContext xmi:id="_nZPywA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.SnippetExecute" name="Auto::org.eclipse.jdt.debug.ui.SnippetExecute"/>
  <rootContext xmi:id="_nZRn8A0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.SnippetDisplay" name="Auto::org.eclipse.jdt.debug.ui.SnippetDisplay"/>
  <rootContext xmi:id="_nZS2EA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.SnippetInspect" name="Auto::org.eclipse.jdt.debug.ui.SnippetInspect"/>
  <rootContext xmi:id="_nZTdIQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" name="Auto::org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction"/>
  <rootContext xmi:id="_nZUEMQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" name="Auto::org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction"/>
  <rootContext xmi:id="_nZUrQA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" name="Auto::org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction"/>
  <rootContext xmi:id="_nZUrQg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" name="Auto::org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction"/>
  <rootContext xmi:id="_nZVSUA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.texteditor.SelectRulerAction" name="Auto::org.eclipse.ui.texteditor.SelectRulerAction"/>
  <rootContext xmi:id="_nZVSUg0VEeO-8I6yck2Tzw" elementId="StructureSelectEnclosing" name="Auto::StructureSelectEnclosing"/>
  <rootContext xmi:id="_nZV5YQ0VEeO-8I6yck2Tzw" elementId="StructureSelectNext" name="Auto::StructureSelectNext"/>
  <rootContext xmi:id="_nZWgcA0VEeO-8I6yck2Tzw" elementId="StructureSelectPrevious" name="Auto::StructureSelectPrevious"/>
  <rootContext xmi:id="_nZWgcg0VEeO-8I6yck2Tzw" elementId="StructureSelectHistory" name="Auto::StructureSelectHistory"/>
  <rootContext xmi:id="_nwspcA0VEeO-8I6yck2Tzw" elementId="adt.actionSet.wizards" name="Auto::adt.actionSet.wizards"/>
  <rootContext xmi:id="_nwtQgA0VEeO-8I6yck2Tzw" elementId="adt.actionSet.refactorings" name="Auto::adt.actionSet.refactorings"/>
  <rootContext xmi:id="_nwt3kA0VEeO-8I6yck2Tzw" elementId="adt.actionSet.avdManager" name="Auto::adt.actionSet.avdManager"/>
  <rootContext xmi:id="_nwt3kg0VEeO-8I6yck2Tzw" elementId="adt.actionSet.lint" name="Auto::adt.actionSet.lint"/>
  <rootContext xmi:id="_nwueoA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.gltrace.actionset" name="Auto::com.android.ide.eclipse.gltrace.actionset"/>
  <rootContext xmi:id="_nwvFsA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ant.ui.actionSet.presentation" name="Auto::org.eclipse.ant.ui.actionSet.presentation"/>
  <rootContext xmi:id="_nwvswA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.debugActionSet" name="Auto::org.eclipse.cdt.debug.ui.debugActionSet"/>
  <rootContext xmi:id="_nwwT0A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.reverseDebuggingActionSet" name="Auto::org.eclipse.cdt.debug.ui.reverseDebuggingActionSet"/>
  <rootContext xmi:id="_nwwT0g0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.tracepointActionSet" name="Auto::org.eclipse.cdt.debug.ui.tracepointActionSet"/>
  <rootContext xmi:id="_nww64A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.debugViewLayoutActionSet" name="Auto::org.eclipse.cdt.debug.ui.debugViewLayoutActionSet"/>
  <rootContext xmi:id="_nwxh8A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.dsf.debug.ui.updateModes" name="Auto::org.eclipse.cdt.dsf.debug.ui.updateModes"/>
  <rootContext xmi:id="_nwxh8g0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.make.ui.updateActionSet" name="Auto::org.eclipse.cdt.make.ui.updateActionSet"/>
  <rootContext xmi:id="_nwyJAA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.make.ui.makeTargetActionSet" name="Auto::org.eclipse.cdt.make.ui.makeTargetActionSet"/>
  <rootContext xmi:id="_nwywEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.CodingActionSet" name="Auto::org.eclipse.cdt.ui.CodingActionSet"/>
  <rootContext xmi:id="_nwywEg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.SearchActionSet" name="Auto::org.eclipse.cdt.ui.SearchActionSet"/>
  <rootContext xmi:id="_nwzXIA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.NavigationActionSet" name="Auto::org.eclipse.cdt.ui.NavigationActionSet"/>
  <rootContext xmi:id="_nwz-MA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.OpenActionSet" name="Auto::org.eclipse.cdt.ui.OpenActionSet"/>
  <rootContext xmi:id="_nwz-Mg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.buildConfigActionSet" name="Auto::org.eclipse.cdt.ui.buildConfigActionSet"/>
  <rootContext xmi:id="_nw0lQQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.CElementCreationActionSet" name="Auto::org.eclipse.cdt.ui.CElementCreationActionSet"/>
  <rootContext xmi:id="_nw1MUQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.text.c.actionSet.presentation" name="Auto::org.eclipse.cdt.ui.text.c.actionSet.presentation"/>
  <rootContext xmi:id="_nw1zYA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.breakpointActionSet" name="Auto::org.eclipse.debug.ui.breakpointActionSet"/>
  <rootContext xmi:id="_nw2acA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.debugActionSet" name="Auto::org.eclipse.debug.ui.debugActionSet"/>
  <rootContext xmi:id="_nw2acg0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.launchActionSet" name="Auto::org.eclipse.debug.ui.launchActionSet"/>
  <rootContext xmi:id="_nw3BgQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.profileActionSet" name="Auto::org.eclipse.debug.ui.profileActionSet"/>
  <rootContext xmi:id="_nw3okA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.gitaction" name="Auto::org.eclipse.egit.ui.gitaction"/>
  <rootContext xmi:id="_nw4PoA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.navigation" name="Auto::org.eclipse.egit.ui.navigation"/>
  <rootContext xmi:id="_nw42sA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.JDTDebugActionSet" name="Auto::org.eclipse.jdt.debug.ui.JDTDebugActionSet"/>
  <rootContext xmi:id="_nw42sg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.junit.JUnitActionSet" name="Auto::org.eclipse.jdt.junit.JUnitActionSet"/>
  <rootContext xmi:id="_nw5dwQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.jdt.ui.text.java.actionSet.presentation"/>
  <rootContext xmi:id="_nw6E0Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.jdt.ui.JavaElementCreationActionSet"/>
  <rootContext xmi:id="_nw7S8A0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.JavaActionSet" name="Auto::org.eclipse.jdt.ui.JavaActionSet"/>
  <rootContext xmi:id="_nw76AA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.A_OpenActionSet" name="Auto::org.eclipse.jdt.ui.A_OpenActionSet"/>
  <rootContext xmi:id="_nw8hEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.CodingActionSet" name="Auto::org.eclipse.jdt.ui.CodingActionSet"/>
  <rootContext xmi:id="_nw9IIA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.SearchActionSet" name="Auto::org.eclipse.jdt.ui.SearchActionSet"/>
  <rootContext xmi:id="_nw9vMA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.cheatsheets.actionSet" name="Auto::org.eclipse.ui.cheatsheets.actionSet"/>
  <rootContext xmi:id="_nw9vMg0VEeO-8I6yck2Tzw" elementId="org.eclipse.search.searchActionSet" name="Auto::org.eclipse.search.searchActionSet"/>
  <rootContext xmi:id="_nw-WQA0VEeO-8I6yck2Tzw" elementId="org.eclipse.team.ui.actionSet" name="Auto::org.eclipse.team.ui.actionSet"/>
  <rootContext xmi:id="_nw-9UA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.actionSet.annotationNavigation" name="Auto::org.eclipse.ui.edit.text.actionSet.annotationNavigation"/>
  <rootContext xmi:id="_nw-9Ug0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.actionSet.navigation" name="Auto::org.eclipse.ui.edit.text.actionSet.navigation"/>
  <rootContext xmi:id="_nw_kYQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo" name="Auto::org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo"/>
  <rootContext xmi:id="_nxALcA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.externaltools.ExternalToolsSet" name="Auto::org.eclipse.ui.externaltools.ExternalToolsSet"/>
  <rootContext xmi:id="_nxAygA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.NavigateActionSet" name="Auto::org.eclipse.ui.NavigateActionSet"/>
  <rootContext xmi:id="_nxAygg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.actionSet.keyBindings" name="Auto::org.eclipse.ui.actionSet.keyBindings"/>
  <rootContext xmi:id="_nxBZkQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.WorkingSetModificationActionSet" name="Auto::org.eclipse.ui.WorkingSetModificationActionSet"/>
  <rootContext xmi:id="_nxCAoA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.WorkingSetActionSet" name="Auto::org.eclipse.ui.WorkingSetActionSet"/>
  <rootContext xmi:id="_nxCnsA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.actionSet.openFiles" name="Auto::org.eclipse.ui.actionSet.openFiles"/>
  <rootContext xmi:id="_nxCnsg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.actionSet.presentation" name="Auto::org.eclipse.ui.edit.text.actionSet.presentation"/>
  <rootContext xmi:id="_uAvfoA0fEeOIacLjN9pZUA" elementId="com.android.ide.eclipse.adt.debug.LaunchConfigType.internal.org.eclipse.debug.ui.DebugPerspective" name="Auto::com.android.ide.eclipse.adt.debug.LaunchConfigType.internal.org.eclipse.debug.ui.DebugPerspective"/>
  <descriptors xmi:id="_nV48wA0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.ui.compatibility.editor" allowMultiple="true" category="org.eclipse.e4.primaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor">
    <tags>Editor</tags>
  </descriptors>
  <descriptors xmi:id="_nV91QA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.editors.resources.explorer.ResourceExplorerView" label="Resource Explorer" iconURI="platform:/plugin/com.android.ide.eclipse.adt/icons/draw9patch-16.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWFxEA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.adt.internal.lint.LintViewPart" label="Lint Warnings" iconURI="platform:/plugin/com.android.ide.eclipse.adt/icons/lintview.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWGYIA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.ddms.views.DeviceView" label="Devices" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/device.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWHmQA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.ddms.views.OldLogCatView" label="LogCat (deprecated)" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/android.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWINUA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.ddms.views.LogCatView" label="LogCat" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/logcat.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWJbcA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.ddms.views.ThreadView" label="Threads" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/thread.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWKCgA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.ddms.views.HeapView" label="Heap" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/heap.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWKpkA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.ddms.views.FileExplorerView" label="File Explorer" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/android.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWLQoA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.ddms.views.EmulatorControlView" label="Emulator Control" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/emulator-16.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWL3sA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.ddms.views.AllocTrackerView" label="Allocation Tracker" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/heap.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWMewA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.ddms.views.NetworkStatsView" label="Network Statistics" iconURI="platform:/plugin/com.android.ide.eclipse.ddms/icons/networkstats.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWNF0A0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.ddms.views.SysInfoView" label="System Information" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWNs4A0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.gltrace.views.FrameBuffer" label="Frame Summary" iconURI="platform:/plugin/com.android.ide.eclipse.gldebugger/icons/opengl.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Tracer for OpenGL ES</tags>
  </descriptors>
  <descriptors xmi:id="_nWO7AA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.gltrace.views.State" label="GL State" iconURI="platform:/plugin/com.android.ide.eclipse.gldebugger/icons/opengl.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Tracer for OpenGL ES</tags>
  </descriptors>
  <descriptors xmi:id="_nWPiEA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.gltrace.views.Details" label="Details" iconURI="platform:/plugin/com.android.ide.eclipse.gldebugger/icons/opengl.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Tracer for OpenGL ES</tags>
  </descriptors>
  <descriptors xmi:id="_nWQJIA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.hierarchyviewer.views.DeviceSelectorView" label="Windows" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/device.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWQwMA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.hierarchyviewer.views.PixelPerfectView" label="Pixel Perfect" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/pixel-perfect.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWR-UA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.hierarchyviewer.views.PixelPerfectLoupeView" label="Pixel Perfect Loupe" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/pixel-perfect.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWSlYA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.hierarchyviewer.views.PixelPerfectTreeView" label="Pixel Perfect Tree" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/pixel-perfect.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWTzgA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.hierarchyviewer.views.TreeViewView" label="Tree View" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/tree-view.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWUakA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.hierarchyviewer.views.PropertyView" label="View Properties" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/tree-view.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWVosA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.hierarchyviewer.views.TreeOverviewView" label="Tree Overview" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/tree-view.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWWPwA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.hierarchyviewer.views.LayoutView" label="Layout View" iconURI="platform:/plugin/com.android.ide.eclipse.hierarchyviewer/icons/tree-view.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Android</tags>
  </descriptors>
  <descriptors xmi:id="_nWW20A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ant.ui.views.AntView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Ant</tags>
  </descriptors>
  <descriptors xmi:id="_nWYE8A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.codan.internal.ui.views.ProblemDetails" label="Problem Details" iconURI="platform:/plugin/org.eclipse.cdt.codan.ui/icons/edit_bug.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:&amp;C/C++</tags>
  </descriptors>
  <descriptors xmi:id="_nWYsAA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.executablesView" label="Executables" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/obj16/exec_view_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Debug</tags>
  </descriptors>
  <descriptors xmi:id="_nWZ6IA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.SignalsView" label="Signals" iconURI="platform:/plugin/org.eclipse.cdt.debug.ui/icons/view16/signals_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Debug</tags>
  </descriptors>
  <descriptors xmi:id="_nWahMA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.dsf.gdb.ui.tracecontrol.view" label="Trace Control" iconURI="platform:/plugin/org.eclipse.cdt.dsf.gdb.ui/icons/full/view16/tracecontrol_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Debug</tags>
  </descriptors>
  <descriptors xmi:id="_nWbIQA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.view" label="Disassembly" iconURI="platform:/plugin/org.eclipse.cdt.dsf.ui/icons/disassembly.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Debug</tags>
  </descriptors>
  <descriptors xmi:id="_nWbvUA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.make.ui.views.MakeView" label="Make Target" iconURI="platform:/plugin/org.eclipse.cdt.make.ui/icons/view16/make_target.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Make</tags>
  </descriptors>
  <descriptors xmi:id="_nWcWYA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.CView" label="C/C++ Projects" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/cview.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:&amp;C/C++</tags>
  </descriptors>
  <descriptors xmi:id="_nWdkgA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.IndexView" label="C/C++ Index" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/types.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:&amp;C/C++</tags>
  </descriptors>
  <descriptors xmi:id="_nWeyoA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.includeBrowser" label="Include Browser" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/includeBrowser.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:&amp;C/C++</tags>
  </descriptors>
  <descriptors xmi:id="_nWfZsA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.callHierarchy" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/call_hierarchy.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:&amp;C/C++</tags>
  </descriptors>
  <descriptors xmi:id="_nWgn0A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.typeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.cdt.ui/icons/view16/class_hi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:&amp;C/C++</tags>
  </descriptors>
  <descriptors xmi:id="_nWhO4A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.texteditor.TemplatesView" label="Templates" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/templates.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nWjrIA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.DebugView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Debug</tags>
  </descriptors>
  <descriptors xmi:id="_nWk5QA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.BreakpointView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/breakpoint_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Debug</tags>
  </descriptors>
  <descriptors xmi:id="_nWmucA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.VariableView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/variable_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Debug</tags>
  </descriptors>
  <descriptors xmi:id="_nWnVgA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.ExpressionView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/watchlist_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Debug</tags>
  </descriptors>
  <descriptors xmi:id="_nWojoA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.RegisterView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/register_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Debug</tags>
  </descriptors>
  <descriptors xmi:id="_nWpxwA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.ModuleView" label="Modules" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/module_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Debug</tags>
  </descriptors>
  <descriptors xmi:id="_nWqY0A0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.MemoryView" label="Memory" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/memory_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Debug</tags>
  </descriptors>
  <descriptors xmi:id="_nWrm8A0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Git</tags>
  </descriptors>
  <descriptors xmi:id="_nWs1EA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.StagingView" label="Git Staging" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/staging.png" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Git</tags>
  </descriptors>
  <descriptors xmi:id="_nWuDMA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.CompareTreeView" label="Git Tree Compare" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/obj16/gitrepository.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Git</tags>
  </descriptors>
  <descriptors xmi:id="_nWuqQA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.ReflogView" label="Git Reflog" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/reflog.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Git</tags>
  </descriptors>
  <descriptors xmi:id="_nWv4YA0VEeO-8I6yck2Tzw" elementId="org.eclipse.gef.ui.palette_view" label="Palette" iconURI="platform:/plugin/org.eclipse.gef/icons/palette_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nWxGgA0VEeO-8I6yck2Tzw" elementId="org.eclipse.help.ui.HelpView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Help</tags>
  </descriptors>
  <descriptors xmi:id="_nWyUoA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.DisplayView" label="Display" iconURI="platform:/plugin/org.eclipse.jdt.debug.ui/icons/full/etool16/disp_sbook.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Debug</tags>
  </descriptors>
  <descriptors xmi:id="_nWziwA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.junit.ResultView" label="JUnit" iconURI="platform:/plugin/org.eclipse.jdt.junit/icons/full/eview16/junit.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Java</tags>
  </descriptors>
  <descriptors xmi:id="_nW0w4A0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.PackageExplorer" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Java</tags>
  </descriptors>
  <descriptors xmi:id="_nW2mEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.TypeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/class_hi.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Java</tags>
  </descriptors>
  <descriptors xmi:id="_nW30MA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.ProjectsView" label="Projects" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/projects.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Java Browsing</tags>
  </descriptors>
  <descriptors xmi:id="_nW4bQA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.PackagesView" label="Packages" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/packages.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Java Browsing</tags>
  </descriptors>
  <descriptors xmi:id="_nW5pYA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.TypesView" label="Types" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/types.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Java Browsing</tags>
  </descriptors>
  <descriptors xmi:id="_nW6QcA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.MembersView" label="Members" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/members.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Java Browsing</tags>
  </descriptors>
  <descriptors xmi:id="_nW7ekA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/call_hierarchy.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Java</tags>
  </descriptors>
  <descriptors xmi:id="_nW8ssA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Java</tags>
  </descriptors>
  <descriptors xmi:id="_nW9TwA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.JavadocView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Java</tags>
  </descriptors>
  <descriptors xmi:id="_nW-h4A0VEeO-8I6yck2Tzw" elementId="org.eclipse.search.SearchResultView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nW_I8A0VEeO-8I6yck2Tzw" elementId="org.eclipse.search.ui.views.SearchView" label="Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXAXEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.team.sync.views.SynchronizeView" label="Synchronize" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/synch_synch.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Team</tags>
  </descriptors>
  <descriptors xmi:id="_nXBlMA0VEeO-8I6yck2Tzw" elementId="org.eclipse.team.ui.GenericHistoryView" label="History" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/history_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Team</tags>
  </descriptors>
  <descriptors xmi:id="_nXCMQA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.internal.introview" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXDaYA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.browser.view" label="Internal Web Browser" iconURI="platform:/plugin/org.eclipse.ui.browser/icons/obj16/internal_browser.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXEBcA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:Help</tags>
  </descriptors>
  <descriptors xmi:id="_nXFPkA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.console.ConsoleView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console/icons/full/cview16/console_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXF2oA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.ProgressView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/pview.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXHEwA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.ResourceNavigator" label="Navigator" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/filenav_nav.gif" category="org.eclipse.e4.primaryNavigationStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXHr0A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.BookmarkView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/bkmrk_nav.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXIS4A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.TaskList" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/tasks_tsk.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXJhAA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.ProblemView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXKIEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.AllMarkersView" label="Markers" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXLWMA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigator.ProjectExplorer" label="Project Explorer" iconURI="platform:/plugin/org.eclipse.ui.navigator.resources/icons/full/eview16/resource_persp.gif" category="org.eclipse.e4.primaryNavigationStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXL9QA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.PropertySheet" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.gif" allowMultiple="true" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXNLYA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.ContentOutline" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/outline_co.gif" category="org.eclipse.e4.secondaryNavigationStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXNycA0VEeO-8I6yck2Tzw" elementId="org.eclipse.pde.runtime.LogView" label="Error Log" iconURI="platform:/plugin/org.eclipse.ui.views.log/icons/eview16/error_log.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXPAkA0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" label="Snippets" iconURI="platform:/plugin/org.eclipse.wst.common.snippets/icons/snippets_view.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:General</tags>
  </descriptors>
  <descriptors xmi:id="_nXQOsA0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.ui.views.annotations.XMLAnnotationsView" label="Documentation" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/obj16/comment_obj.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:XML</tags>
  </descriptors>
  <descriptors xmi:id="_nXQ1wA0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.ui.contentmodel.view" label="Content Model" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/view16/hierarchy.gif" category="org.eclipse.e4.secondaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
    <tags>View</tags>
    <tags>categoryTag:XML</tags>
  </descriptors>
  <commands xmi:id="_nNAtlg0VEeO-8I6yck2Tzw" elementId="e4.exit" contributorURI="platform:/plugin/org.eclipse.ui.workbench" commandName="%command.name.exit" description=""/>
  <commands xmi:id="_nNAtlw0VEeO-8I6yck2Tzw" elementId="e4.show.view" contributorURI="platform:/plugin/org.eclipse.ui.workbench" commandName="%command.name.showView">
    <parameters xmi:id="_nNAtmA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.viewId" contributorURI="platform:/plugin/org.eclipse.ui.workbench" name="View"/>
  </commands>
  <commands xmi:id="_nNAtmQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.ui.saveCommands" contributorURI="platform:/plugin/org.eclipse.ui.workbench" commandName="%command.name.save"/>
  <commands xmi:id="_nNAtmg0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.ui.saveAllCommands" contributorURI="platform:/plugin/org.eclipse.ui.workbench" commandName="%command.name.saveAll"/>
  <commands xmi:id="_nOTuEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xsd.ui.refactor.makeTypeGlobal" commandName="Make &amp;Anonymous Type Global" description="Promotes anonymous type to global level and replaces its references" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOTuEQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.command.nextpage" commandName="Next Page of Memory" description="Load next page of memory" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOTuEg0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOTuEw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.removeTrailingWhitespace" commandName="Remove Trailing Whitespace" description="Removes the trailing whitespace of each line" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOTuFA0VEeO-8I6yck2Tzw" elementId="sed.tabletree.expandAll" commandName="Expand All" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOTuFQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in Java editors" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOTuFg0VEeO-8I6yck2Tzw" 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="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOTuFw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.gotoAddress" commandName="Go to Address..." description="Navigate to address" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOTuGA0VEeO-8I6yck2Tzw" 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="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOTuGQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.delimiter.macOS9" commandName="Convert Line Delimiters to MacOS 9 (CR, \r, 0D, &#xa4;)" description="Converts the line delimiters to MacOS 9 (CR, \r, 0D, &#xa4;)" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOTuGg0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOTuGw0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.structure.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOUVIA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewClone" commandName="Clone a Git Repository" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOUVIQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.ui.disable.grammar.constraints" commandName="Turn off Grammar Constraints" description="Turn off grammar Constraints" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOUVIg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.open.quick.type.hierarchy" commandName="Quick Type Hierarchy" description="Shows quick type hierarchy" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOUVIw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.textStart" commandName="Select Text Start" description="Select to the beginning of the text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOUVJA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.groupDebugContexts" commandName="Group" description="Groups the selected debug contexts" category="_nOSf9w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOUVJQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.cheatsheets.openCheatSheetURL" commandName="Open Cheat Sheet from URL" description="Open a Cheat Sheet from file at a specified URL." category="_nOTHAg0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOUVJg0VEeO-8I6yck2Tzw" elementId="cheatSheetId" name="Identifier" optional="false"/>
    <parameters xmi:id="_nOUVJw0VEeO-8I6yck2Tzw" elementId="name" name="Name" optional="false"/>
    <parameters xmi:id="_nOUVKA0VEeO-8I6yck2Tzw" elementId="url" name="URL" optional="false"/>
  </commands>
  <commands xmi:id="_nOUVKQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewRefresh" commandName="Refresh" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOUVKg0VEeO-8I6yck2Tzw" 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="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOUVKw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.JavaBrowsingPerspective" commandName="Java Browsing" description="Show the Java Browsing perspective" category="_nOR44A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOU8MA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.project.buildAll" commandName="Build All" description="Build all projects" category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOU8MQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.lockToolBar" commandName="Lock the Toolbars" description="Lock the Toolbars" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOU8Mg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All" description="Expand the current tree" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOU8Mw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.dsf.gdb.ui.command.selectNextTraceRecord" commandName="Next Trace Record" description="Select Next Trace Record" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOU8NA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.import" commandName="Import" description="Import" category="_nOSf8Q0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOU8NQ0VEeO-8I6yck2Tzw" elementId="importWizardId" name="Import Wizard"/>
  </commands>
  <commands xmi:id="_nOU8Ng0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.lineEnd" commandName="Select Line End" description="Select to the end of the line of text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOU8Nw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.help.helpSearch" commandName="Help Search" description="Open the help search" category="_nOTHAg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOU8OA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.CompareWithHead" commandName="Compare with HEAD Revision" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOU8OQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.smartEnterInverse" commandName="Insert Line Above Current Line" description="Adds a new line above the current line" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOU8Og0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.refactor.extract.local.variable" commandName="Extract Local Variable - Refactoring " description="Extract a local variable for the selected expression" category="_nOR44w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOU8Ow0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.externalTools.commands.OpenExternalToolsConfigurations" commandName="External Tools..." description="Open external tools launch configuration dialog" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOVjQA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.windowEnd" commandName="Window End" description="Go to the end of the window" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOVjQQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.add.include" commandName="Add Include" description="Create include statement on selection" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOVjQg0VEeO-8I6yck2Tzw" elementId="org.eclipse.team.ui.TeamSynchronizingPerspective" commandName="Team Synchronizing" description="Open the Team Synchronizing Perspective" category="_nOR44A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOVjQw0VEeO-8I6yck2Tzw" elementId="org.eclipse.help.ui.indexcommand" commandName="Index" description="Show Keyword Index" category="_nOTHAg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOVjRA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.StepOver" commandName="Step Over" description="Step over" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOVjRQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ant.ui.renameInFile" commandName="Rename In File" description="Renames all references within the same buildfile" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOVjRg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.hover.backwardMacroExpansion" commandName="Back" description="Step backward in macro expansions" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOVjRw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewOpenInEditor" commandName="Open in Editor" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOVjSA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.RenameBranch" commandName="Rename Branch..." category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOVjSQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOVjSg0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.addMemoryMonitor" commandName="Add Memory Block" description="Add Memory block" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOVjSw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewRebase" commandName="Rebase" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOVjTA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.revertToSaved" commandName="Revert to Saved" description="Revert to the last saved state" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWKUA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.Rebase" commandName="Rebase" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWKUQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor" description="Pin the current editor" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWKUg0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWKUw0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWKVA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWKVQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWKVg0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.format.active.elements" commandName="Format Active Elements" description="Format active elements" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWKVw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWKWA0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWKWQ0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWKWg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.Tag" commandName="Tag" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWKWw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.ShowRepositoriesView" commandName="Show Git Repositories View" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxYA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.folding.restore" commandName="Reset Structure" description="Resets the folding structure" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxYQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.restartWorkbench" commandName="Restart" description="Restart the workbench" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxYg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.export" commandName="Export" description="Export" category="_nOSf8Q0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOWxYw0VEeO-8I6yck2Tzw" elementId="exportWizardId" name="Export Wizard"/>
  </commands>
  <commands xmi:id="_nOWxZA0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxZQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigurePush" commandName="Configure Push..." category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxZg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.command.breakpointProperties" commandName="C/C++ Breakpoint Properties" description="View and edit properties for a given C/C++ breakpoint" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxZw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.lineDown" commandName="Select Line Down" description="Extend the selection to the next line of text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxaA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.resetPerspective" commandName="Reset Perspective" description="Reset the current perspective to its default state" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxaQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource" commandName="Rename Resource" description="Rename the selected resource and notify LTK participants." category="_nOTHBQ0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxag0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.PushHeadToGerrit" commandName="Push Current Head to Gerrit" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxaw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.showContextMenu" commandName="Show Context Menu" description="Show the context menu" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxbA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.stash.drop" commandName="Delete Stashed Commit..." category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxbQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.savePerspective" commandName="Save Perspective As" description="Save the current perspective" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxbg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.ConfigureUpstreamPush" commandName="Configure Upstream Push" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxbw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.showInformation" commandName="Show Tooltip Description" description="Displays information for the current caret location in a focused hover" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxcA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.ide.markCompleted" commandName="Mark Completed" description="Mark the selected tasks as completed" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxcQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.ConfigureFetch" commandName="Configure Upstream Fetch" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOWxcg0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.nextMemoryBlock" commandName="Next Memory Monitor" description="Show renderings from next memory monitor." category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYcA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.refactor.extract.constant" commandName="Extract Constant - Refactoring " description="Extract a constant for the selected expression" category="_nOR44w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYcQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.toggleOverwrite" commandName="Toggle Overwrite" description="Toggle overwrite mode" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYcg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.textEnd" commandName="Text End" description="Go to the end of the text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYcw0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYdA0VEeO-8I6yck2Tzw" 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="_nOSf-g0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOXYdQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.specific_content_assist.category_id" name="type" optional="false"/>
  </commands>
  <commands xmi:id="_nOXYdg0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYdw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.showKeyAssist" commandName="Show Key Assist" description="Show the key assist dialog" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYeA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.delete" commandName="Delete" description="Delete the selection" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYeQ0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.adt.refactoring.extract.include" commandName="Extract as Include" description="Extract Views as Included Layout" category="_nOSf8w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYeg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.saveAs" commandName="Save As" description="Save the current contents to another location" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYew0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewChangeCredentials" commandName="Change Credentials" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYfA0VEeO-8I6yck2Tzw" elementId="org.eclipse.search.ui.performTextSearchWorkspace" commandName="Find Text in Workspace" description="Searches the files in the workspace for specific text." category="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYfQ0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYfg0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYfw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.refactor.getters.and.setters" commandName="Generate Getters and Setters..." description="Generates getters and setters for a selected field" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYgA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.refactor.hide.method" commandName="Hide Memeber Function..." category="_nOR44w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYgQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.JavaPerspective" commandName="Java" description="Show the Java perspective" category="_nOR44A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYgg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYgw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.CreateTag" commandName="Create Tag" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYhA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYhQ0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYhg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.override.methods" commandName="Override/Implement Methods" description="Override or implement methods from super types" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOXYhw0VEeO-8I6yck2Tzw" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_gA0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_gQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.specific_content_assist.command" commandName="C/C++ Content Assist" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_nOSf-g0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOX_gg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.specific_content_assist.category_id" name="type" optional="false"/>
  </commands>
  <commands xmi:id="_nOX_gw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.refactor.extract.function" commandName="Extract Function - Refactoring " description="Extract a function for the selected list of expressions or statements" category="_nOR44w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_hA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewPaste" commandName="Paste Repository Path or URI" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_hQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_hg0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_hw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_iA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_iQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewCopyPath" commandName="Copy Path to Clipboard" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_ig0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.Ignore" commandName="Ignore" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_iw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb" commandName="Toggle Java Editor Breadcrumb" description="Toggle the Java editor breadcrumb" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_jA0VEeO-8I6yck2Tzw" 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="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_jQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewCreateTag" commandName="Create Tag..." category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_jg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.reverseStepInto" commandName="Reverse Step Into" description="Perform Reverse Step Into" category="_nOSf_A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_jw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.RemoveFromIndex" commandName="Remove from Git Index" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_kA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_kQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.open.quick.macro.explorer" commandName="Explore Macro Expansion" description="Opens a quick view for macro expansion exploration" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_kg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.lineUp" commandName="Line Up" description="Go up one line of text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_kw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.newQuickMenu" commandName="New menu" description="Open the New menu" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_lA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.deleteNext" commandName="Delete Next" description="Delete the next character" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_lQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.deleteNextWord" commandName="Delete Next Word" description="Delete the next word" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_lg0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOX_lw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.undo" commandName="Undo" description="Undo the last operation" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmkA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.castToType" commandName="Cast To Type..." category="_nOSf9A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmkQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.back" commandName="Back" description="Navigate back" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmkg0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.DebugLast" commandName="Debug" description="Launch in debug mode" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmkw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.excludeCommand" commandName="Exclude from Build" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmlA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.editors.lineNumberToggle" commandName="Show Line Numbers" description="Toggle display of line numbers" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmlQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.ToggleStepFilters" commandName="Use Step Filters" description="Toggles enablement of debug step filters" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmlg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesLinkWithSelection" commandName="Link with Selection" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmlw0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmmA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmmQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.newEditor" commandName="New Editor" description="Open another editor on the active editor's input" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmmg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.org.eclipse.egit.ui.AbortRebase" commandName="Abort Rebase" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmmw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.Fetch" commandName="Fetch" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmnA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.SetQuickdiffBaseline" commandName="Set quickdiff baseline" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmnQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.wordPrevious" commandName="Previous Word" description="Go to the previous word" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmng0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewDelete" commandName="Delete Repository" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmnw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.ShowBlame" commandName="Show Annotations" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmoA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.recenter" commandName="Recenter" description="Recenter the window based on the cursor" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmoQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.help.installationDialog" commandName="Installation Information" description="Open the installation dialog" category="_nOTHAg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmog0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.Pull" commandName="Pull" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmow0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.restoreDefaultType" commandName="Restore Original Type" description="View and edit properties for a given C/C++ breakpoint" category="_nOSf9A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmpA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.CompareWithIndex" commandName="Compare with Git Index" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmpQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.shiftRight" commandName="Shift Right" description="Shift a block of text to the right" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOYmpg0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.ui.nextSibling" commandName="Next Sibling" description="Go to Next Sibling" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNoA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.indent" commandName="Indent Line" description="Indents the current line" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNoQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.refresh" commandName="Refresh" description="Refresh the selected items" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNog0VEeO-8I6yck2Tzw" elementId="org.eclipse.gef.ui.palette_view" commandName="Palette" category="_nOR45Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNow0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.gotoPC" commandName="Go to Program Counter" description="Navigate to current program counter" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNpA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.Merge" commandName="Merge" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNpQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.search.ui.performTextSearchWorkingSet" commandName="Find Text in Working Set" description="Searches the files in the working set for specific text." category="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNpg0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNpw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNqA0VEeO-8I6yck2Tzw" 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="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNqQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.CreateBranch" commandName="Create Branch" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNqg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNqw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor" description="Switch to the next editor" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNrA0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNrQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.ShowInReflog" commandName="Reflog" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNrg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.ShowBlame" commandName="Show Annotations" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNrw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.forward" commandName="Forward" description="Navigate forward" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNsA0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.ui.cmnd.contentmodel.sych" commandName="Synch" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNsQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.pageUp" commandName="Page Up" description="Go up one page" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNsg0VEeO-8I6yck2Tzw" elementId="sed.tabletree.collapseAll" commandName="Collapse All" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNsw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected method" category="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNtA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.OpenRunConfigurations" commandName="Run..." description="Open run launch configuration dialog" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNtQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.AssumeUnchanged" commandName="Assume Unchanged" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZNtg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.uncall" commandName="Uncall" description="Perform Uncall" category="_nOSf_A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0sA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView" commandName="Show Java Element Type Hierarchy" description="Show a Java element in the Type Hierarchy view" category="_nOTHBg0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOZ0sQ0VEeO-8I6yck2Tzw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
  </commands>
  <commands xmi:id="_nOZ0sg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.deletePreviousWord" commandName="Delete Previous Word" description="Delete the previous word" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0sw0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.toggle.comment" commandName="Toggle Comment" description="Toggle Comment" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0tA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.deletePrevious" commandName="Delete Previous" description="Delete the previous character" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0tQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.SkipAllBreakpoints" commandName="Skip All Breakpoints" description="Sets whether or not any breakpoint should suspend execution" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0tg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.correction.extractLocalNotReplaceOccurrences.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0tw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.set.mark" commandName="Set Mark" description="Set the mark" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0uA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ltk.ui.refactor.show.refactoring.history" commandName="Open Refactoring History " description="Opens the refactoring history" category="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0uQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.OpenCommit" commandName="Open Git Commit" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0ug0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.RenameBranch" commandName="Rename Branch" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0uw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.AddToIndex" commandName="Add to Git Index" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0vA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.exit" commandName="Exit" description="Exit the application" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0vQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0vg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.ConfigurePush" commandName="Configure Upstream Push" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0vw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.customizePerspective" commandName="Customize Perspective" description="Customize the current perspective" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0wA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.showInQuickMenu" commandName="Show In..." description="Open the Show In menu" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0wQ0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0wg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.ide.deleteCompleted" commandName="Delete Completed Tasks" description="Delete the tasks marked as completed" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0ww0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.DebugPerspective" commandName="Debug" description="Open the debug perspective" category="_nOR44A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOZ0xA0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabwA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.rename" commandName="Rename" description="Rename the selected item" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabwQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ltk.ui.refactoring.commands.deleteResources" commandName="Delete Resources" description="Delete the selected resources and notify LTK participants." category="_nOTHBQ0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabwg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.CheckoutCommand" commandName="Checkout" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabww0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.next" commandName="Next" description="Navigate to the next item" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabxA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabxQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabxg0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabxw0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabyA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.adt.refactoring.unwrap" commandName="Remove Container" description="Unwraps Views From Their Container" category="_nOSf8w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabyQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.structure.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabyg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.open.implementation" commandName="Open Implementation" description="Opens the Implementations of a method in its hierarchy" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabyw0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabzA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.internal.reflog.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabzQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabzg0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOabzw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.ShowHistory" commandName="Show in History" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOab0A0VEeO-8I6yck2Tzw" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_nOTHAw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOab0Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.goto.next.bookmark" commandName="Next Bookmark" description="Goto next bookmark of the selected file" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOab0g0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.junit.junitShortcut.rerunFailedFirst" commandName="Rerun JUnit Test - Failures First" description="Rerun JUnit Test - Failures First" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC0A0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC0Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_nOR44Q0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nObC0g0VEeO-8I6yck2Tzw" elementId="plugin" name="Plugin"/>
    <parameters xmi:id="_nObC0w0VEeO-8I6yck2Tzw" elementId="path" name="Path"/>
  </commands>
  <commands xmi:id="_nObC1A0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.stash.apply" commandName="Apply Stashed Changes" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC1Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.ContinueRebase" commandName="Continue Rebase" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC1g0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.Push" commandName="Push" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC1w0VEeO-8I6yck2Tzw" elementId="org.eclipse.compare.copyAllLeftToRight" commandName="Copy All from Left to Right" description="Copy All Changes from Left to Right" category="_nOTHAw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC2A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters" commandName="Show Whitespace Characters" description="Shows whitespace characters in current text editor" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC2Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.preferences" commandName="Preferences" description="Open the preferences dialog" category="_nOR44Q0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nObC2g0VEeO-8I6yck2Tzw" elementId="preferencePageId" name="Preference Page"/>
  </commands>
  <commands xmi:id="_nObC2w0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.selectAll" commandName="Select All" description="Select all" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC3A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.close" commandName="Close" description="Close the active editor" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC3Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.internal.reflog.CopyCommand" commandName="Copy" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC3g0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.newWizard" commandName="New" description="Open the New item wizard" category="_nOSf8Q0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nObC3w0VEeO-8I6yck2Tzw" elementId="newWizardId" name="New Wizard"/>
  </commands>
  <commands xmi:id="_nObC4A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.comment" commandName="Comment" description="Turn the selected lines into // style comments" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC4Q0VEeO-8I6yck2Tzw" 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="_nOTHAg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC4g0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or method" category="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC4w0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_nOTHAg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC5A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.find.word" commandName="Find Word" description="Select a word and find the next occurrence" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC5Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObC5g0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.deleteConfigsCommand" commandName="Reset to Default" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp4A0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.Revert" commandName="Revert Commit" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp4Q0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp4g0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewCreateBranch" commandName="Create Branch..." category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp4w0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp5A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.select.previous" commandName="Select Previous C/C++ Element" description="Expand the selection to enclosing C/C++ element" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp5Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ant.ui.openExternalDoc" commandName="Open External Documentation" description="Open the External documentation for the current task in the Ant editor" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp5g0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.refactor.toggle.function" commandName="Toggle Function - Refactoring " description="Toggles the implementation between header and implementation file" category="_nOR44w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp5w0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.ui.gotoMatchingTag" commandName="Matching Tag" description="Go to Matching Tag" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp6A0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.JavaHierarchyPerspective" commandName="Java Type Hierarchy" description="Show the Java Type Hierarchy perspective" category="_nOR44A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp6Q0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp6g0VEeO-8I6yck2Tzw" 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="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp6w0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp7A0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.indent" commandName="Correct Indentation" description="Corrects the indentation of the selected lines" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp7Q0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp7g0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp7w0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_nOTHBg0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nObp8A0VEeO-8I6yck2Tzw" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/>
  </commands>
  <commands xmi:id="_nObp8Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.Synchronize" commandName="Synchronize" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp8g0VEeO-8I6yck2Tzw" 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="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp8w0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp9A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.help.helpContents" commandName="Help Contents" description="Open the help contents" category="_nOTHAg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp9Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.reverseStepOver" commandName="Reverse Step Over" description="Perform Reverse Step Over" category="_nOSf_A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp9g0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.opencview" commandName="Show in C/C++ Project view" description="Show the selected resource in the C/C++ Project view" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nObp9w0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.format" commandName="Format" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ8A0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify field access" description="Invokes quick assist and selects 'Qualify field access'" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ8Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.saveAll" commandName="Save All" description="Save all current contents" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ8g0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.GarbageCollect" commandName="Collect Garbage" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ8w0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ9A0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ9Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.format.document" commandName="Format" description="Format selection" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ9g0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.textEnd" commandName="Select Text End" description="Select to the end of the text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ9w0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.delete.line" commandName="Delete Line" description="Delete a line of text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ-A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.showViewMenu" commandName="Show View Menu" description="Show the view menu" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ-Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ-g0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.findIncremental" commandName="Incremental Find" description="Incremental find" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ-w0VEeO-8I6yck2Tzw" elementId="org.eclipse.search.ui.performTextSearchProject" commandName="Find Text in Project" description="Searches the files in the project for specific text." category="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ_A0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewOpenProperties" commandName="Open Properties View" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ_Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.make.ui.targetBuildLastCommand" commandName="Rebuild Last Target" description="Rebuild the last make target for the selected container or project." category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ_g0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.previousEditor" commandName="Previous Editor" description="Switch to the previous editor" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcQ_w0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.DeleteBranch" commandName="Delete Branch..." category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcRAA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.commands.openElementInEditor" commandName="Open Java Element" description="Open a Java element in its editor" category="_nOTHBg0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOcRAQ0VEeO-8I6yck2Tzw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
  </commands>
  <commands xmi:id="_nOcRAg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.maximizePart" commandName="Maximize Active View or Editor" description="Toggles maximize/restore state of active view or editor" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOcRAw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.ide.configureColumns" commandName="Configure Columns..." description="Configure the columns in the markers view" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOc4AA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.commands.AddClassPrepareBreakpoint" commandName="Add Class Load Breakpoint" description="Add a class load breakpoint" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOc4AQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.editors.revisions.id.toggle" commandName="Toggle Revision Id Display" description="Toggles the display of the revision id" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOc4Ag0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.folding.collapse_all" commandName="Collapse All" description="Collapses all folded regions" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOc4Aw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.commit.CherryPick" commandName="Cherry Pick" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOc4BA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.perspectives.showPerspective" commandName="Show Perspective" description="Show a particular perspective" category="_nOR44A0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOc4BQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId" name="Parameter"/>
    <parameters xmi:id="_nOc4Bg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.perspectives.showPerspective.newWindow" name="In New Window"/>
  </commands>
  <commands xmi:id="_nOc4Bw0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.eof" commandName="EOF" description="Send end of file" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOc4CA0VEeO-8I6yck2Tzw" 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="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOc4CQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.ui.reload.dependencies" commandName="Reload Dependencies" description="Reload Dependencies" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOc4Cg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.editors.quickdiff.revert" commandName="Revert Lines" description="Revert the current selection, block or deleted lines" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOc4Cw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.previousSubTab" commandName="Previous Sub-Tab" description="Switch to the previous sub-tab" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOc4DA0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOc4DQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xsd.ui.refactor.makeElementGlobal" commandName="Make Local Element &amp;Global" description="Promotes local element to global level and replaces its references" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOc4Dg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.smartEnter" commandName="Insert Line Below Current Line" description="Adds a new line below the current line" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOc4Dw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.pageDown" commandName="Page Down" description="Go down one page" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.Reset" commandName="Reset" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfEQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.windowStart" commandName="Window Start" description="Go to the start of the window" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfEg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into" description="Navigate into the selected item" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfEw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.stopTracing" commandName="Stop Tracing " description="Stop Tracing Experiment" category="_nOTHBA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfFA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.ungroupDebugContexts" commandName="Ungroup" description="Ungroups the selected debug contexts" category="_nOSf9w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfFQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.contentAssist.proposals" commandName="Content Assist" description="Content Assist" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfFg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.folding.expand_all" commandName="Expand All" description="Expands all folded regions" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfFw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab" description="Switch to the next tab" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfGA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfGQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.Discard" commandName="Replace with File in Git Index" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfGg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.ide.OpenMarkersView" commandName="Open Another" description="Open another view" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfGw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfHA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.Terminate" commandName="Terminate" description="Terminate" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfHQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.NoAssumeUnchanged" commandName="No Assume Unchanged" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfHg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.sort.lines" commandName="Sort Lines" description="Sort selected lines alphabetically" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfHw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.windowEnd" commandName="Select Window End" description="Select to the end of the window" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfIA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.command.gotoaddress" commandName="Go to Address" description="Go to Address" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfIQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.uncomment" commandName="Uncomment" description="Uncomment the selected # style comment lines" category="_nOSf8A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOdfIg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.switchToEditor" commandName="Switch to Editor" description="Switch to an editor" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGIA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.command.shareProject" commandName="Share with Git" description="Share the project using Git" category="_nOSf-w0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOeGIQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.command.projectNameParameter" name="Project" optional="false"/>
  </commands>
  <commands xmi:id="_nOeGIg0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.Suspend" commandName="Suspend" description="Suspend" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGIw0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.adt.refactoring.extract.string" commandName="Extract Android String" description="Extract Strings into Android String Resources" category="_nOSf8w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGJA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.previousView" commandName="Previous View" description="Switch to the previous view" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGJQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.navigate.open.element.in.call.hierarchy" commandName="Open Element in Call Hierarchy" description="Open an element in the call hierarchy view" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGJg0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGJw0VEeO-8I6yck2Tzw" 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="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGKA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.closeRendering" commandName="Close Rendering" description="Close the selected rendering." category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGKQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.commands.showElementInPackageView" commandName="Show Java Element in Package Explorer" description="Select Java element in the Package Explorer view" category="_nOTHBg0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOeGKg0VEeO-8I6yck2Tzw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
  </commands>
  <commands xmi:id="_nOeGKw0VEeO-8I6yck2Tzw" elementId="org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize resources in the workspace with another location" category="_nOTHAQ0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGLA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.help.displayHelp" commandName="Display Help" description="Display a Help topic" category="_nOTHAg0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOeGLQ0VEeO-8I6yck2Tzw" elementId="href" name="Help topic href"/>
  </commands>
  <commands xmi:id="_nOeGLg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a Java editor" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGLw0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.open.file.from.source" commandName="Open Selection" description="Open an editor on the selected link" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGMA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.previousPerspective" commandName="Previous Perspective" description="Switch to the previous perspective" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGMQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.Branch" commandName="Branch" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGMg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.junit.junitShortcut.debug" commandName="Debug JUnit Test" description="Debug JUnit Test" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOeGMw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.project.closeProject" commandName="Close Project" description="Close the selected project" category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetMA0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetMQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.refactoring.command.ExtractConstant" commandName="Extract Constant..." category="_nOR44w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetMg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.FetchGerritChange" commandName="Fetch From Gerrit" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetMw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.folding.expand" commandName="Expand" description="Expands the folded region at the current selection" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetNA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.junit.junitShortcut.rerunLast" commandName="Rerun JUnit Test" description="Rerun JUnit Test" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetNQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewRemove" commandName="Remove Repository" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetNg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetNw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.lineStart" commandName="Line Start" description="Go to the start of the line of text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetOA0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xsd.ui.refactor.rename.element" commandName="&amp;Rename XSD element" description="Rename XSD element" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetOQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.select.next" commandName="Select Next C/C++ Element" description="Expand the selection to next C/C++ element" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetOg0VEeO-8I6yck2Tzw" 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="_nOTHAg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetOw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.junit.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetPA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.project.properties" commandName="Properties" description="Display the properties of the selected item's project " category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetPQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode" commandName="Toggle Block Selection" description="Toggle block / column selection in the current text editor" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetPg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.save" commandName="Save" description="Save the current contents" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetPw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.CompareWithWorkingTree" commandName="Compare with Working Tree" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetQA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.closePart" commandName="Close Part" description="Close the active workbench part" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetQQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.ToggleWatchpoint" commandName="Toggle Watchpoint" description="Creates or removes a watchpoint" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetQg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureBranch" commandName="Configure Branch" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetQw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetRA0VEeO-8I6yck2Tzw" 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="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOetRQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ltk.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfUQA0VEeO-8I6yck2Tzw" elementId="org.eclipse.gef.zoom_in" commandName="Zoom In" description="Zoom In" category="_nOTHAA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfUQQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals" commandName="Quick Fix" description="Suggest possible fixes for a problem" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfUQg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.editors.revisions.rendering.cycle" commandName="Cycle Revision Coloring Mode" description="Cycles through the available coloring modes for revisions" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfUQw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.commands.Watch" commandName="Watch" description="Create new watch expression" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfURA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.showRulerContextMenu" commandName="Show Ruler Context Menu" description="Show the context menu for the ruler" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfURQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.minimizePart" commandName="Minimize Active View or Editor" description="Minimizes the active view or editor" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfURg0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint" commandName="Toggle Method Breakpoint" description="Creates or removes a method breakpoint" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfURw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.part.nextPage" commandName="Next Page" description="Switch to the next page" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfUSA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.ReplaceWithRef" commandName="Replace with branch, tag, or reference" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfUSQ0VEeO-8I6yck2Tzw" 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="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfUSg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.backwardHistory" commandName="Backward History" description="Move backward in the editor navigation history" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfUSw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.swap.mark" commandName="Swap Mark" description="Swap the mark with the cursor position" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfUTA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.refactoring.command.ExtractLocalVariable" commandName="Extract Local Variable..." category="_nOR44w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfUTQ0VEeO-8I6yck2Tzw" 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="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfUTg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.project.buildProject" commandName="Build Project" description="Build the selected project" category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOfUTw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ant.ui.antShortcut.run" commandName="Run Ant Build" description="Run Ant Build" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7UA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.saveTraceData" commandName="Save Trace Data " description="Save Trace Data to File" category="_nOTHBA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7UQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.add.block.comment" commandName="Add Block Comment" description="Add Block Comment" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7Ug0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.showSystemMenu" commandName="Show System Menu" description="Show the system menu" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7Uw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7VA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.lowerCase" commandName="To Lower Case" description="Changes the selection to lower case" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7VQ0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7Vg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the translation unit" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7Vw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.pageDown" commandName="Select Page Down" description="Select to the bottom of the page" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7WA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.newRendering" commandName="New Rendering" description="Add a new rendering." category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7WQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.SimplePush" commandName="Push to Upstream" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7Wg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.MergeTool" commandName="Merge Tool" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7Ww0VEeO-8I6yck2Tzw" 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="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7XA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.OpenInTextEditorCommand" commandName="Open in Text Editor" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7XQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.openLocalFile" commandName="Open File..." description="Open a file" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7Xg0VEeO-8I6yck2Tzw" elementId="org.eclipse.compare.selectPreviousChange" commandName="Select Previous Change" description="Select Previous Change" category="_nOTHAw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7Xw0VEeO-8I6yck2Tzw" elementId="org.eclipse.gef.zoom_out" commandName="Zoom Out" description="Zoom Out" category="_nOTHAA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOf7YA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" commandName="Show Selected Element Only" description="Show Selected Element Only" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgiYA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgiYQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgiYg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.Reset" commandName="Reset" category="_nOSf-w0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOgiYw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.ResetMode" name="Reset mode" optional="false"/>
  </commands>
  <commands xmi:id="_nOgiZA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgiZQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.commands.AddExceptionBreakpoint" commandName="Add Java Exception Breakpoint" description="Add a Java exception breakpoint" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgiZg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.reverseToggle" commandName="Reverse Toggle" description="Toggle Reverse Debugging" category="_nOSf_A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgiZw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.CompareVersionsInTree" commandName="Compare in Tree" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgiaA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.opendecl" commandName="Open Declaration" description="Open an editor on the selected element's declaration(s)" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgiaQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgiag0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgiaw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgibA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgibQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.commands.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgibg0VEeO-8I6yck2Tzw" elementId="org.eclipse.quickdiff.toggle" commandName="Quick Diff Toggle" description="Toggles quick diff information display on the line number ruler" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgibw0VEeO-8I6yck2Tzw" elementId="org.eclipse.team.ui.applyPatch" commandName="Apply Patch..." description="Apply a patch to one or more workspace projects." category="_nOTHAQ0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgicA0VEeO-8I6yck2Tzw" elementId="org.eclipse.compare.copyLeftToRight" commandName="Copy from Left to Right" description="Copy Current Change from Left to Right" category="_nOTHAw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgicQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ltk.ui.refactoring.commands.moveResources" commandName="Move Resources" description="Move the selected resources and notify LTK participants." category="_nOTHBQ0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgicg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.startTracing" commandName="Start Tracing " description="Start Tracing Experiment" category="_nOTHBA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgicw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewRenameBranch" commandName="Rename Branch..." category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgidA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.toggleInsertMode" commandName="Toggle Insert Mode" description="Toggle insert mode" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOgidQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJcA0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJcQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.line" commandName="Go to Line" description="Go to a specified line of text" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJcg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewAddToIndex" commandName="Add to Index" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJcw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.nextSubTab" commandName="Next Sub-Tab" description="Switch to the next sub-tab" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJdA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.stash.create" commandName="Stash Changes" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJdQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewRemoveRemote" commandName="Delete Remote" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJdg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in C/C++ editors" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJdw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.columnPrevious" commandName="Previous Column" description="Go to the previous column" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJeA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar" commandName="Run Last Launched External Tool" description="Runs the last launched external Tool" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJeQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.Commit" commandName="Commit..." category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJeg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.search.findrefs" commandName="Find References" description="Find References" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJew0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJfA0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.remove.block.comment" commandName="Remove Block Comment" description="Remove Block Comment" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJfQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark" description="Add a bookmark" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJfg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.lineStart" commandName="Select Line Start" description="Select to the beginning of the line of text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJfw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.CheckoutCommand" commandName="Checkout" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJgA0VEeO-8I6yck2Tzw" 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="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJgQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewAddRepository" commandName="Add a Git Repository" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJgg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.hover.forwardMacroExpansion" commandName="Forward" description="Step forward in macro expansions" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJgw0VEeO-8I6yck2Tzw" elementId="org.eclipse.equinox.p2.ui.sdk.update" commandName="Check for Updates" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJhA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.findIncrementalReverse" commandName="Incremental Find Reverse" description="Incremental find reverse" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhJhQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.project.rebuildAll" commandName="Rebuild All" description="Rebuild all projects" category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwgA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.activateEditor" commandName="Activate Editor" description="Activate the editor" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwgQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwgg0VEeO-8I6yck2Tzw" elementId="org.eclipse.compare.copyAllRightToLeft" commandName="Copy All from Right to Left" description="Copy All Changes from Right to Left" category="_nOTHAw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwgw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.generate.javadoc" commandName="Generate Javadoc" description="Generates Javadoc for a selectable set of Java resources" category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwhA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.PushCommit" commandName="Push Commit..." category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwhQ0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwhg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.reverseResume" commandName="Reverse Resume" description="Perform Reverse Resume" category="_nOSf_A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwhw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.project.closeUnrelatedProjects" commandName="Close Unrelated Projects" description="Close unrelated projects" category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwiA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.lineDown" commandName="Line Down" description="Go down one line of text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwiQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureGerritRemote" commandName="Gerrit Configuration..." category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwig0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.ToggleBreakpoint" commandName="Toggle Breakpoint" description="Creates or removes a breakpoint" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwiw0VEeO-8I6yck2Tzw" elementId="org.eclipse.compare.ignoreWhiteSpace" commandName="Ignore White Space" description="Ignore white space where applicable" category="_nOTHAw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwjA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.previousTab" commandName="Previous Tab" description="Switch to the previous tab" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwjQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition" commandName="Last Edit Location" description="Last edit location" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwjg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.SkipRebase" commandName="Skip Rebase" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwjw0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.toggleMemoryMonitorsPane" commandName="Toggle Memory Monitors Pane" description="Toggle visibility of the Memory Monitors Pane" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwkA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RebaseCurrent" commandName="Rebase" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwkQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwkg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id To Clipboard" description="Copies the build id to the clipboard." category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOhwkw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_nOSf9g0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOhwlA0VEeO-8I6yck2Tzw" elementId="title" name="Title"/>
    <parameters xmi:id="_nOhwlQ0VEeO-8I6yck2Tzw" elementId="message" name="Message"/>
    <parameters xmi:id="_nOiXkA0VEeO-8I6yck2Tzw" elementId="initialValue" name="Initial Value"/>
    <parameters xmi:id="_nOiXkQ0VEeO-8I6yck2Tzw" elementId="cancelReturns" name="Return Value on Cancel"/>
  </commands>
  <commands xmi:id="_nOiXkg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.ShowVersions" commandName="Open" category="_nOSf-w0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOiXkw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.CompareMode" name="Compare mode"/>
  </commands>
  <commands xmi:id="_nOiXlA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.navigate.opentype" commandName="Open Element" description="Open an element in an Editor" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXlQ0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXlg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand" commandName="Properties" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXlw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ant.ui.antShortcut.debug" commandName="Debug Ant Build" description="Debug Ant Build" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXmA0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXmQ0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXmg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.collapseAll" commandName="Collapse All" description="Collapse the current tree" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXmw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXnA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.folding.toggle" commandName="Toggle Folding" description="Toggles folding in the current editor" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXnQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.submodule.update" commandName="Update Submodule" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXng0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.ui.referencedFileErrors" commandName="Show Details..." description="Show Details..." category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXnw0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXoA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXoQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.quick_outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXog0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.commit.Revert" commandName="Revert Commit" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXow0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into Java comments" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXpA0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXpQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOiXpg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.commands.Display" commandName="Display" description="Display result of evaluating selected text" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-oA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewCreateRepository" commandName="Create a Repository" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-oQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.revert" commandName="Revert" description="Revert to the last saved state" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-og0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-ow0VEeO-8I6yck2Tzw" 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="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-pA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.scroll.lineDown" commandName="Scroll Line Down" description="Scroll down one line of text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-pQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-pg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.redo" commandName="Redo" description="Redo the last operation" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-pw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.SimpleFetch" commandName="Fetch from Upstream" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-qA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.StepInto" commandName="Step Into" description="Step into" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-qQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.commit.Checkout" commandName="Checkout" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-qg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.join.lines" commandName="Join Lines" description="Join lines of text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-qw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.search.finddecl" commandName="Find Declaration" description="Find Declaration" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-rA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.scroll.lineUp" commandName="Scroll Line Up" description="Scroll up one line of text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-rQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.TerminateAndRelaunch" commandName="Terminate and Relaunch" description="Terminate and Relaunch" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-rg0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-rw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.print" commandName="Print" description="Print" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-sA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.forwardHistory" commandName="Forward History" description="Move forward in the editor navigation history" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-sQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.breakpoint.properties" commandName="Java Breakpoint Properties" description="View and edit the properties for a given Java breakpoint" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-sg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.pageUp" commandName="Select Page Up" description="Select to the top of the page" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-sw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-tA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.CompareWithPrevious" commandName="Compare with Previous Revision" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOi-tQ0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlsA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.help.dynamicHelp" commandName="Dynamic Help" description="Open the dynamic help" category="_nOTHAg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlsQ0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlsg0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.RunLast" commandName="Run" description="Launch in run mode" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlsw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.copyLineUp" commandName="Duplicate Lines" description="Duplicates the selected lines and leaves the selection unchanged" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjltA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjltQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.commit.CreateBranch" commandName="Create Branch..." category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjltg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjltw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.removeFromWorkingSet" commandName="Remove From Working Set" description="Removes the selected object from a working set." category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjluA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.debug" commandName="Debug Java Applet" description="Debug Java Applet" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjluQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.run" commandName="Run Java Application" description="Run Java Application" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlug0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.ReplaceWithCommit" commandName="Replace with commit" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjluw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.DeleteBranch" commandName="Delete Branch" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlvA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchHierarchy" commandName="Toggle Branch Representation" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlvQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.ApplyPatch" commandName="Apply Patch" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlvg0VEeO-8I6yck2Tzw" 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="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlvw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.folding.collapse" commandName="Collapse" description="Collapses the folded region at the current selection" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlwA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlwQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.navigate.gotopackage" commandName="Go to Package" description="Go to Package" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlwg0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.structure.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlww0VEeO-8I6yck2Tzw" elementId="org.eclipse.equinox.p2.ui.sdk.install" commandName="Install New Software..." category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOjlxA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.nextView" commandName="Next View" description="Switch to the next view" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMwA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.project.buildLast" commandName="Repeat Working Set Build" description="Repeat the last working set build" category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMwQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.textStart" commandName="Text Start" description="Go to the beginning of the text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMwg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.junit.junitShortcut.run" commandName="Run JUnit Test" description="Run JUnit Test" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMww0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.properties" commandName="Properties" description="Display the properties of the selected item" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMxA0VEeO-8I6yck2Tzw" elementId="org.eclipse.search.ui.openSearchDialog" commandName="Open Search Dialog" description="Open the Search dialog" category="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMxQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.actions.WatchCommand" commandName="Wa&amp;tch" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMxg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.openWorkspace" commandName="Switch Workspace" description="Open the workspace selection dialog" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMxw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMyA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.moveLineUp" commandName="Move Lines Up" description="Moves the selected lines up" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMyQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.ide.configureFilters" commandName="Configure Contents..." description="Configure the filters to apply to the markers view" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMyg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.open.outline" commandName="Show outline" description="Shows outline" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMyw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to field" description="Invokes quick assist and selects 'Assign to field'" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMzA0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMzQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.copyLineDown" commandName="Copy Lines" description="Duplicates the selected lines and moves the selection to the copy" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMzg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open the call hierarchy for the selected element" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkMzw0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkM0A0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xsd.ui.refactor.renameTargetNamespace" commandName="Rename Target Namespace" description="Changes the target namespace of the schema" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkM0Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.cleanup.document" commandName="Cleanup Document..." description="Cleanup document" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkM0g0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected Java comment lines" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkM0w0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkM1A0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz0A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.wordNext" commandName="Next Word" description="Go to the next word" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz0Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.CherryPick" commandName="Cherry Pick" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz0g0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.ConfigureUpstreamFetch" commandName="Configure Upstream Fetch" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz0w0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.Merge" commandName="Merge" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz1A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.toggle.comment" commandName="Comment/Uncomment" description="Comment/Uncomment the selected lines" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz1Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.up" commandName="Up" description="Navigate up one level" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz1g0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz1w0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz2A0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaseline" commandName="Reset quickdiff baseline" category="_nOSf-w0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOkz2Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaselineTarget" name="Reset target (HEAD, HEAD^1)" optional="false"/>
  </commands>
  <commands xmi:id="_nOkz2g0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.submodule.add" commandName="Add Submodule" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz2w0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.adt.refactoring.changeview" commandName="Change Widget Type" description="Changes the widget type for the selection" category="_nOSf8w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz3A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.make.ui.targetBuildCommand" commandName="Make Target Build" description="Invoke a make target build for the selected container." category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz3Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.hideShowEditors" commandName="Toggle Editor Area Visibility" description="Toggles the visibility of the editor area" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz3g0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.closePerspective" commandName="Close Perspective" description="Close the current perspective" category="_nOR44Q0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOkz3w0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.closePerspective.perspectiveId" name="Perspective Id"/>
  </commands>
  <commands xmi:id="_nOkz4A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.project.rebuildProject" commandName="Rebuild Project" description="Rebuild the selected projects" category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz4Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.move" commandName="Move..." description="Move the selected item" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz4g0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOkz4w0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.clear.mark" commandName="Clear Mark" description="Clear the mark" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla4A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.goto.prev.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the translation unit" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla4Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.generate.tostring" commandName="Generate toString()" description="Generates the toString() method for the type" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla4g0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.ReplaceWithHead" commandName="Replace with HEAD revision" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla4w0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.OpenProfileConfigurations" commandName="Profile..." description="Open profile launch configuration dialog" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla5A0VEeO-8I6yck2Tzw" 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="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla5Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.cheatsheets.openCheatSheet" commandName="Open Cheat Sheet" description="Open a Cheat Sheet." category="_nOTHAg0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOla5g0VEeO-8I6yck2Tzw" elementId="cheatSheetId" name="Identifier"/>
  </commands>
  <commands xmi:id="_nOla5w0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewOpen" commandName="Open" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla6A0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit" commandName="Toggle Latest Branch Commit" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla6Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.castToArray" commandName="Cast To Type..." category="_nOSf9A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla6g0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.contentAssist.contextInformation" commandName="Context Information" description="Show Context Information" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla6w0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.CompareVersions" commandName="Compare with each other" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla7A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.browser.openBrowser" commandName="Open Browser" description="Opens the default web browser." category="_nOR44Q0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOla7Q0VEeO-8I6yck2Tzw" elementId="url" name="URL"/>
    <parameters xmi:id="_nOla7g0VEeO-8I6yck2Tzw" elementId="browserId" name="Browser Id"/>
    <parameters xmi:id="_nOla7w0VEeO-8I6yck2Tzw" elementId="name" name="Browser Name"/>
    <parameters xmi:id="_nOla8A0VEeO-8I6yck2Tzw" elementId="tooltip" name="Browser Tooltip"/>
  </commands>
  <commands xmi:id="_nOla8Q0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla8g0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla8w0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOla9A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.columnNext" commandName="Select Next Column" description="Select the next column" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB8A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.select.last" commandName="Restore Last C/C++ Selection" description="Restore last selection in C/C++ editor" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB8Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.goto.matching.bracket" commandName="Matching Bracket" description="Go to Matching Bracket" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB8g0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.upperCase" commandName="To Upper Case" description="Changes the selection to upper case" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB8w0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.debug" commandName="Debug Java Application" description="Debug Java Application" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB9A0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.DropToFrame" commandName="Drop to Frame" description="Drop to Frame" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB9Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.format" commandName="Format" description="Format Source Code" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB9g0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewNewRemote" commandName="Create Remote..." category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB9w0VEeO-8I6yck2Tzw" elementId="org.eclipse.search.ui.openFileSearchPage" commandName="File Search" description="Open the Search dialog's file search page" category="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB-A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.command.resumeWithoutSignal" commandName="Resume Without Signal" description="Resume Without Signal" category="_nOSf_g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB-Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.team.ui.synchronizeLast" commandName="Repeat last synchronization" description="Repeat the last synchronization" category="_nOTHAQ0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB-g0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB-w0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.history.CreatePatch" commandName="Create Patch" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB_A0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.generate.xml" commandName="&amp;XML File..." category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB_Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.xml.ui.previousSibling" commandName="Previous Sibling" description="Go to Previous Sibling" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB_g0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmB_w0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.columnNext" commandName="Next Column" description="Go to the next column" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmCAA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.extract.class" commandName="Extract Class..." description="Extracts fields into a new class" category="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmCAQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.selectWorkingSets" commandName="Select Working Sets" description="Select the working sets that are applicable for this window." category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmCAg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.help.aboutAction" commandName="About" description="Open the about dialog" category="_nOTHAg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpAA0VEeO-8I6yck2Tzw" elementId="org.eclipse.compare.copyRightToLeft" commandName="Copy from Right to Left" description="Copy Current Change from Right to Left" category="_nOTHAw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpAQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.uncomment" commandName="Uncomment" description="Uncomment the selected // style comment lines" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpAg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.command.configureTrace" commandName="Configure Git Debug Trace" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpAw0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpBA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.CompareWithRevision" commandName="Compare with History" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpBQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.compare.selectNextChange" commandName="Select Next Change" description="Select Next Change" category="_nOTHAw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpBg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.dsf.debug.ui.disassembly.commands.rulerToggleBreakpoint" commandName="Toggle Breakpoint" description="Toggle breakpoint in disassembly ruler" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpBw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.newWindow" commandName="New Window" description="Open another window" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpCA0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.RemoveAllBreakpoints" commandName="Remove All Breakpoints" description="Removes all breakpoints" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpCQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.showResourceByPath" commandName="Show Resource in Navigator" description="Show a resource in the Navigator given its path" category="_nOTHBg0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOmpCg0VEeO-8I6yck2Tzw" elementId="resourcePath" name="Resource Path" typeId="org.eclipse.ui.ide.resourcePath" optional="false"/>
  </commands>
  <commands xmi:id="_nOmpCw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.refactor.implement.method" commandName="Implement Method - Source Generation " description="Implements a method for a selected method declaration" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpDA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.adt.refactoring.convert" commandName="Change Layout" description="Converts Layouts from One Type to Another" category="_nOSf8w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpDQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.make.ui.targetCreateCommand" commandName="Create Make Target" description="Create a new make build target for the selected container." category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpDg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpDw0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.dsf.gdb.ui.command.selectPreviousTraceRecord" commandName="Previous Trace Record" description="Select Previous Trace Record" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpEQ0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpEg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.shiftLeft" commandName="Shift Left" description="Shift a block of text to the left" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOmpEw0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQEA0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.search.find.occurrences" commandName="Occurrences in File" description="Find occurrences of the selection in the file" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQEQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.project.cleanAction" commandName="Build Clean" description="Discard old built state" category="_nOR45A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQEg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQEw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.activeContextInfo" commandName="Show activeContext Info" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQFA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.findNext" commandName="Find Next" description="Find next item" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQFQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.Disconnect" commandName="Disconnect" description="Disconnect" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQFg0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.adt.refactoring.extract.style" commandName="Extract Styles" description="Extract Styles" category="_nOSf8w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQFw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQGA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.commit.CreateTag" commandName="Create Tag..." category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQGQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.structure.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQGg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.comment" commandName="Comment" description="Turn the selected lines into # style comments" category="_nOSf8A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQGw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.select.enclosing" commandName="Select Enclosing C/C++ Element" description="Expand the selection to enclosing C/C++ element" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQHA0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQHQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.windowStart" commandName="Select Window Start" description="Select to the start of the window" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQHg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.c.toggle.source.header" commandName="Toggle Source/Header" description="Toggles between corresponding source and header files" category="_nOSf_Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQHw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.internal.reflog.CheckoutCommand" commandName="Checkout" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQIA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQIQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.wst.sse.ui.outline.customFilter" commandName="&amp;Filters" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQIg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQIw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.help.quickStartAction" commandName="Welcome" description="Show help for beginning users" category="_nOTHAg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOnQJA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.addTask" commandName="Add Task..." description="Add a task" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3IA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.closeAllPerspectives" commandName="Close All Perspectives" description="Close all open perspectives" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3IQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.editors.quickdiff.revertLine" commandName="Revert Line" description="Revert the current line" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3Ig0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.command.prevpage" commandName="Previous Page of Memory" description="Load previous page of memory" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3Iw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.findPrevious" commandName="Find Previous" description="Find previous item" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3JA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3JQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ant.ui.toggleMarkOccurrences" commandName="Toggle Ant Mark Occurrences" description="Toggles mark occurrences in Ant editors" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3Jg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView" commandName="Show View" description="Shows a particular view" category="_nOR45Q0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOn3Jw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.viewId" name="View"/>
    <parameters xmi:id="_nOn3KA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.secondaryId" name="Secondary Id"/>
    <parameters xmi:id="_nOn3KQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.views.showView.makeFast" name="As FastView"/>
  </commands>
  <commands xmi:id="_nOn3Kg0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.commands.viewMemory" commandName="View Memory" description="View variable in memory view" category="_nOSf-w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3Kw0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3LA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ltk.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3LQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.delimiter.windows" commandName="Convert Line Delimiters to Windows (CRLF, \r\n, 0D0A, &#xa4;&#xb6;)" description="Converts the line delimiters to Windows (CRLF, \r\n, 0D0A, &#xa4;&#xb6;)" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3Lg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.cut.line" commandName="Cut Line" description="Cut a line of text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3Lw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.columnPrevious" commandName="Select Previous Column" description="Select the previous column" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3MA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.adt.refactoring.wrapin" commandName="Wrap in Container" description="Wraps Views in a New Container" category="_nOSf8w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3MQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.closeAll" commandName="Close All" description="Close all editors" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3Mg0VEeO-8I6yck2Tzw" 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="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3Mw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.codan.commands.runCodanCommand" commandName="Run Code Analysis" category="_nOR44g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOn3NA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.text.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_nOR44w0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoeMA0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoeMQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.select.wordNext" commandName="Select Next Word" description="Select the next word" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoeMg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.goToResource" commandName="Go to" description="Go to a particular resource in the active view" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoeMw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.spy" commandName="Show Contributing Plug-in" description="Shows contribution information for the currently selected element" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoeNA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.submodule.sync" commandName="Sync Submodule" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoeNQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.quickAccess" commandName="Quick Access" description="Quickly access UI elements" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoeNg0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.CompareIndexWithHead" commandName="Compare File in Git Index with HEAD Revision" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoeNw0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.StepReturn" commandName="Step Return" description="Step return" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoeOA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.addToWorkingSet" commandName="Add to Working Set" description="Adds the selected object to a working set." category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoeOQ0VEeO-8I6yck2Tzw" 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="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoeOg0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoeOw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.goto.lineEnd" commandName="Line End" description="Go to the end of the line of text" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoePA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.commands.ForceReturn" commandName="Force Return" description="Forces return from method with value of selected expression " category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoePQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoePg0VEeO-8I6yck2Tzw" 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="_nOSf-Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoePw0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.team.CreatePatch" commandName="Create Patch" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOoeQA0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.adt.launch.LaunchShortcut.run" commandName="Run Android Application" description="Run Android Application" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpFQA0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewImportProjects" commandName="Import Projects..." category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpFQQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.delimiter.unix" commandName="Convert Line Delimiters to Unix (LF, \n, 0A, &#xb6;)" description="Converts the line delimiters to Unix (LF, \n, 0A, &#xb6;)" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpFQg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.showIn" commandName="Show In" category="_nOTHBg0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOpFQw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.navigate.showIn.targetId" name="Show In Target Id" optional="false"/>
  </commands>
  <commands xmi:id="_nOpFRA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.run" commandName="Run Java Applet" description="Run Java Applet" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpFRQ0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpFRg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.dialogs.openMessageDialog" commandName="Open Message Dialog" description="Open a Message Dialog" category="_nOSf9g0VEeO-8I6yck2Tzw">
    <parameters xmi:id="_nOpFRw0VEeO-8I6yck2Tzw" elementId="title" name="Title"/>
    <parameters xmi:id="_nOpFSA0VEeO-8I6yck2Tzw" elementId="message" name="Message"/>
    <parameters xmi:id="_nOpFSQ0VEeO-8I6yck2Tzw" elementId="imageType" name="Image Type Constant" typeId="org.eclipse.ui.dialogs.Integer"/>
    <parameters xmi:id="_nOpFSg0VEeO-8I6yck2Tzw" elementId="defaultIndex" name="Default Button Index" typeId="org.eclipse.ui.dialogs.Integer"/>
    <parameters xmi:id="_nOpFSw0VEeO-8I6yck2Tzw" elementId="buttonLabel0" name="First Button Label"/>
    <parameters xmi:id="_nOpFTA0VEeO-8I6yck2Tzw" elementId="buttonLabel1" name="Second Button Label"/>
    <parameters xmi:id="_nOpFTQ0VEeO-8I6yck2Tzw" elementId="buttonLabel2" name="Third Button Label"/>
    <parameters xmi:id="_nOpFTg0VEeO-8I6yck2Tzw" elementId="buttonLabel3" name="Fourth Button Label"/>
    <parameters xmi:id="_nOpFTw0VEeO-8I6yck2Tzw" elementId="cancelReturns" name="Return Value on Cancel"/>
  </commands>
  <commands xmi:id="_nOpFUA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.commands.AllReferences" commandName="All References" description="Inspect all references to the selected object" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpFUQ0VEeO-8I6yck2Tzw" 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="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpFUg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.window.nextPerspective" commandName="Next Perspective" description="Switch to the next perspective" category="_nOR44Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpFUw0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.OpenDebugConfigurations" commandName="Debug..." description="Open debug launch configuration dialog" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpsUA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.edit.text.hippieCompletion" commandName="Word Completion" description="Context insensitive completion" category="_nOSf-g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpsUQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewClearCredentials" commandName="Clear Credentials" category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpsUg0VEeO-8I6yck2Tzw" 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="_nOTHCA0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpsUw0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.edit.open.include.browser" commandName="Open Include Browser" description="Open an include browser on the selected element" category="_nOTHBg0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpsVA0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.file.closeOthers" commandName="Close Others" description="Close all editors except the one that is active" category="_nOSf8Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpsVQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.make.ui.edit.text.makefile.opendecl" commandName="Open declaration" description="Follow to the directive definition" category="_nOSf8A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpsVg0VEeO-8I6yck2Tzw" 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="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpsVw0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.editors.revisions.author.toggle" commandName="Toggle Revision Author Display" description="Toggles the display of the revision author" category="_nOSf-A0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpsWA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_nOTHBw0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpsWQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureFetch" commandName="Configure Fetch..." category="_nOSf9Q0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpsWg0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.adt.launch.LaunchShortcut.debug" commandName="Debug Android Application" description="Debug Android Application" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpsWw0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.commands.Resume" commandName="Resume" description="Resume" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nOpsXA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.debug.ui.commands.Execute" commandName="Execute" description="Evaluate selected text" category="_nOSf8g0VEeO-8I6yck2Tzw"/>
  <commands xmi:id="_nZQZ0A0VEeO-8I6yck2Tzw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetExecute" commandName="E&amp;xecute"/>
  <commands xmi:id="_nZSPAA0VEeO-8I6yck2Tzw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetDisplay" commandName="Displa&amp;y"/>
  <commands xmi:id="_nZTdIA0VEeO-8I6yck2Tzw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetInspect" commandName="Insp&amp;ect"/>
  <addons xmi:id="_nNAtmw0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.core.commands.service" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.core.commands/org.eclipse.e4.core.commands.CommandServiceAddon"/>
  <addons xmi:id="_nNAtnA0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.ui.contexts.service" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.services/org.eclipse.e4.ui.services.ContextServiceAddon"/>
  <addons xmi:id="_nNAtnQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.ui.bindings.service" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.bindings/org.eclipse.e4.ui.bindings.BindingServiceAddon"/>
  <addons xmi:id="_nNAtng0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.ui.workbench.commands.model" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.CommandProcessingAddon"/>
  <addons xmi:id="_nNAtnw0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.ui.workbench.contexts.model" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.ContextProcessingAddon"/>
  <addons xmi:id="_nNAtoA0VEeO-8I6yck2Tzw" elementId="org.eclipse.e4.ui.workbench.bindings.model" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.swt/org.eclipse.e4.ui.workbench.swt.util.BindingProcessingAddon"/>
  <addons xmi:id="_nNAtoQ0VEeO-8I6yck2Tzw" elementId="Cleanup Addon" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.cleanupaddon.CleanupAddon"/>
  <addons xmi:id="_nNAtog0VEeO-8I6yck2Tzw" elementId="DnD Addon" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.dndaddon.DnDAddon"/>
  <addons xmi:id="_nNAtow0VEeO-8I6yck2Tzw" elementId="MinMax Addon" contributorURI="platform:/plugin/org.eclipse.ui.workbench" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon"/>
  <categories xmi:id="_nOR44A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.category.perspectives" name="Perspectives" description="Commands for opening perspectives"/>
  <categories xmi:id="_nOR44Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.category.window" name="Window"/>
  <categories xmi:id="_nOR44g0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.codan.ui.commands.category" name="Code Analysis"/>
  <categories xmi:id="_nOR44w0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.category.refactoring" name="Refactor - C++" description="C/C++ Refactorings"/>
  <categories xmi:id="_nOR45A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.category.project" name="Project"/>
  <categories xmi:id="_nOR45Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.category.views" name="Views" description="Commands for opening views"/>
  <categories xmi:id="_nOR45g0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.ide.markerContents" name="Contents" description="The category for menu contents"/>
  <categories xmi:id="_nOSf8A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.make.ui.category.source" name="Makefile Source" description="Makefile Source Actions"/>
  <categories xmi:id="_nOSf8Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.category.file" name="File"/>
  <categories xmi:id="_nOSf8g0VEeO-8I6yck2Tzw" elementId="org.eclipse.debug.ui.category.run" name="Run/Debug" description="Run/Debug command category"/>
  <categories xmi:id="_nOSf8w0VEeO-8I6yck2Tzw" elementId="com.android.ide.eclipse.adt.refactoring.category" name="Android Refactorings" description="Refactorings for Android Projects"/>
  <categories xmi:id="_nOSf9A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.category.casting" name="Cast to Type or Array" description="Set of commands for displaying variables and expressions as other types or arrays."/>
  <categories xmi:id="_nOSf9Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.egit.ui.commandCategory" name="Git"/>
  <categories xmi:id="_nOSf9g0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.category.dialogs" name="Dialogs" description="Commands for opening dialogs"/>
  <categories xmi:id="_nOSf9w0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.category.debugViewLayout" name="Debug View Layout Commands" description="Set of commands for controlling the Debug View Layout"/>
  <categories xmi:id="_nOSf-A0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.category.textEditor" name="Text Editing" description="Text Editing Commands"/>
  <categories xmi:id="_nOSf-Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.search.ui.category.search" name="Search" description="Search command category"/>
  <categories xmi:id="_nOSf-g0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.category.edit" name="Edit"/>
  <categories xmi:id="_nOSf-w0VEeO-8I6yck2Tzw" elementId="org.eclipse.core.commands.categories.autogenerated" name="Uncategorized" description="Commands that were either auto-generated or have no category"/>
  <categories xmi:id="_nOSf_A0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.category.reverseDebugging" name="Reverse Debugging Commands" description="Set of commands for Reverse Debugging"/>
  <categories xmi:id="_nOSf_Q0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.ui.category.source" name="C/C++ Source" description="C/C++ Source Actions"/>
  <categories xmi:id="_nOSf_g0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.category.runControl" name="Run Control Commands" description="Set of commands for Run Control"/>
  <categories xmi:id="_nOTHAA0VEeO-8I6yck2Tzw" elementId="org.eclipse.gef.category.view" name="View" description="View"/>
  <categories xmi:id="_nOTHAQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.team.ui.category.team" name="Team" description="Actions that apply when working with a Team"/>
  <categories xmi:id="_nOTHAg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.category.help" name="Help"/>
  <categories xmi:id="_nOTHAw0VEeO-8I6yck2Tzw" elementId="org.eclipse.compare.ui.category.compare" name="Compare" description="Compare command category"/>
  <categories xmi:id="_nOTHBA0VEeO-8I6yck2Tzw" elementId="org.eclipse.cdt.debug.ui.category.tracing" name="Tracing Commands" description="Category for Tracing Commands"/>
  <categories xmi:id="_nOTHBQ0VEeO-8I6yck2Tzw" elementId="org.eclipse.ltk.ui.category.refactoring" name="Refactoring"/>
  <categories xmi:id="_nOTHBg0VEeO-8I6yck2Tzw" elementId="org.eclipse.ui.category.navigate" name="Navigate"/>
  <categories xmi:id="_nOTHBw0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.category.source" name="Source" description="Java Source Actions"/>
  <categories xmi:id="_nOTHCA0VEeO-8I6yck2Tzw" elementId="org.eclipse.jdt.ui.category.refactoring" name="Refactor - Java" description="Java Refactoring Actions"/>
</application:Application>