workbench.xmi
565 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
<?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="_e5-YoHffEemHMbmgLRRGog" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_e5-YoXffEemHMbmgLRRGog" bindingContexts="_e5_pAHffEemHMbmgLRRGog">
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<workbench>
<mruList>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="ManipulateurRectangle.java" tooltip="tp1.1_Rectangle/src/rectangles/ManipulateurRectangle.java">
<persistable path="/tp1.1_Rectangle/src/rectangles/ManipulateurRectangle.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="ApplicationRectangle.java" tooltip="tp1.1_Rectangle/src/rectangles/ApplicationRectangle.java">
<persistable path="/tp1.1_Rectangle/src/rectangles/ApplicationRectangle.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="ManipulateurRectangleTest.java" tooltip="tp1.1_Rectangle/src/test/ManipulateurRectangleTest.java">
<persistable path="/tp1.1_Rectangle/src/test/ManipulateurRectangleTest.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="OuvrageTest.java" tooltip="tp_bibliotheque/src/test/OuvrageTest.java">
<persistable path="/tp_bibliotheque/src/test/OuvrageTest.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="RevueTest.java" tooltip="tp_bibliotheque/src/test/RevueTest.java">
<persistable path="/tp_bibliotheque/src/test/RevueTest.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="BibliothequeTest.java" tooltip="tp_bibliotheque/src/test/BibliothequeTest.java">
<persistable path="/tp_bibliotheque/src/test/BibliothequeTest.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="NonDisponibleException.java" tooltip="tp_bibliotheque/src/src/NonDisponibleException.java">
<persistable path="/tp_bibliotheque/src/src/NonDisponibleException.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="NonDispoException.java" tooltip="tp_bibliotheque/src/src/NonDispoException.java">
<persistable path="/tp_bibliotheque/src/src/NonDispoException.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Bibliotheque.java" tooltip="tp_bibliotheque/src/src/Bibliotheque.java">
<persistable path="/tp_bibliotheque/src/src/Bibliotheque.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Revue.java" tooltip="tp_bibliotheque/src/src/Revue.java">
<persistable path="/tp_bibliotheque/src/src/Revue.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Ouvrage.java" tooltip="tp_bibliotheque/src/src/Ouvrage.java">
<persistable path="/tp_bibliotheque/src/src/Ouvrage.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Ouvrage.java" tooltip="tp_bibliotheque/src/Ouvrage.java">
<persistable path="/tp_bibliotheque/src/Ouvrage.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="Bibliotheque.java" tooltip="tp_bibliotheque/src/Bibliotheque.java">
<persistable path="/tp_bibliotheque/src/Bibliotheque.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="ComparateurOuvrage.java" tooltip="tp_bibliotheque/src/ComparateurOuvrage.java">
<persistable path="/tp_bibliotheque/src/ComparateurOuvrage.java"/>
</file>
<file factoryID="org.eclipse.ui.part.FileEditorInputFactory" id="org.eclipse.jdt.ui.CompilationUnitEditor" name="ProgressionGeometriqueTest.java" tooltip="tp_Test/src/ProgressionGeometriqueTest.java">
<persistable path="/tp_Test/src/ProgressionGeometriqueTest.java"/>
</file>
</mruList>
</workbench>"/>
<tags>activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
<tags>ModelMigrationProcessor.001</tags>
<children xsi:type="basic:TrimmedWindow" xmi:id="_e5-YoXffEemHMbmgLRRGog" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_e5-YonffEemHMbmgLRRGog" label="%trimmedwindow.label.eclipseSDK" x="0" y="31" width="1024" height="768">
<persistedState key="coolBarVisible" value="true"/>
<persistedState key="perspectiveBarVisible" value="true"/>
<persistedState key="isRestored" value="true"/>
<persistedState key="show_in_time" value="<?xml version="1.0" encoding="UTF-8"?>
<show_in_time/>"/>
<persistedState key="workingSets" value="<?xml version="1.0" encoding="UTF-8"?>
<workingSets/>"/>
<persistedState key="aggregateWorkingSetId" value="Aggregate for window 1521630674876"/>
<tags>topLevel</tags>
<tags>shellMaximized</tags>
<children xsi:type="basic:PartSashContainer" xmi:id="_e5-YonffEemHMbmgLRRGog" selectedElement="_e5-Yo3ffEemHMbmgLRRGog" horizontal="true">
<children xsi:type="advanced:PerspectiveStack" xmi:id="_e5-Yo3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.ide.perspectivestack" containerData="7500" selectedElement="_e5-YsHffEemHMbmgLRRGog">
<children xsi:type="advanced:Perspective" xmi:id="_e5-YpHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.ui.tools.perspective.modeling" selectedElement="_e5-YpXffEemHMbmgLRRGog" label="Modeling" iconURI="platform:/plugin/org.eclipse.sirius.ui.ext/icons/full/others/ModelingPerspective.gif">
<persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:org.eclipse.debug.ui.commands.RunToLine,persp.hideToolbarSC:org.eclipse.jdt.ui.actions.OpenProjectWizard,persp.hideToolbarSC:print,persp.hideToolbarSC:org.eclipse.ui.edit.text.toggleShowSelectedElementOnly,"/>
<tags>persp.actionSet:org.eclipse.mylyn.doc.actionSet</tags>
<tags>persp.actionSet:org.eclipse.mylyn.tasks.ui.navigation</tags>
<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.acceleo.ide.ui.editors.template.actionSet</tags>
<tags>persp.actionSet:org.eclipse.wst.jsdt.chromium.debug.ui.actionSets</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.sirius.ui.modelingproject.wizard</tags>
<tags>persp.newWizSC:org.eclipse.sirius.ui.session.creation</tags>
<tags>persp.viewSC:org.eclipse.sirius.ui.tools.views.model.explorer</tags>
<tags>persp.viewSC:org.eclipse.ui.views.PropertySheet</tags>
<tags>persp.viewSC:org.eclipse.ui.views.ContentOutline</tags>
<tags>persp.viewSC:org.eclipse.ui.views.ProblemView</tags>
<tags>persp.newWizSC:org.eclipse.ecoretools.emf.design.wizardID</tags>
<children xsi:type="basic:PartSashContainer" xmi:id="_e5-YpXffEemHMbmgLRRGog" selectedElement="_e5-YpnffEemHMbmgLRRGog" horizontal="true">
<children xsi:type="basic:PartSashContainer" xmi:id="_e5-YpnffEemHMbmgLRRGog" containerData="2500" selectedElement="_e5-Yp3ffEemHMbmgLRRGog">
<children xsi:type="basic:PartStack" xmi:id="_e5-Yp3ffEemHMbmgLRRGog" elementId="org.eclipse.sirius.ui.tools.views.model.explorerMStack" containerData="5000" selectedElement="_e5-YqHffEemHMbmgLRRGog">
<tags>noFocus</tags>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-YqHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.ui.tools.views.model.explorer" ref="_e5_BonffEemHMbmgLRRGog"/>
</children>
<children xsi:type="basic:PartStack" xmi:id="_e5-YqXffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ContentOutlineMStack" containerData="5000" selectedElement="_e5-YqnffEemHMbmgLRRGog">
<children xsi:type="advanced:Placeholder" xmi:id="_e5-YqnffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ContentOutline" ref="_e5_BpXffEemHMbmgLRRGog"/>
</children>
</children>
<children xsi:type="basic:PartSashContainer" xmi:id="_e5-Yq3ffEemHMbmgLRRGog" containerData="7500">
<children xsi:type="advanced:Placeholder" xmi:id="_e5-YrHffEemHMbmgLRRGog" elementId="org.eclipse.ui.editorss" containerData="6500" ref="_e5_BTXffEemHMbmgLRRGog"/>
<children xsi:type="basic:PartStack" xmi:id="_e5-YrXffEemHMbmgLRRGog" elementId="bottom" containerData="3500" selectedElement="_e5-YrnffEemHMbmgLRRGog">
<children xsi:type="advanced:Placeholder" xmi:id="_e5-YrnffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.PropertySheet" ref="_e5_BwnffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-Yr3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ProblemView" ref="_e5_BxXffEemHMbmgLRRGog"/>
</children>
</children>
</children>
</children>
<children xsi:type="advanced:Perspective" xmi:id="_e5-YsHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.JavaPerspective" selectedElement="_e5-YsXffEemHMbmgLRRGog" label="Java" iconURI="platform:/plugin/org.eclipse.jdt.ui/$nl$/icons/full/eview16/jperspective.png">
<persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:org.eclipse.debug.ui.commands.RunToLine,persp.hideToolbarSC:org.eclipse.jdt.ui.actions.OpenProjectWizard,persp.hideToolbarSC:print,persp.hideToolbarSC:org.eclipse.ui.edit.text.toggleShowSelectedElementOnly,"/>
<tags>persp.actionSet:org.eclipse.mylyn.doc.actionSet</tags>
<tags>persp.actionSet:org.eclipse.mylyn.tasks.ui.navigation</tags>
<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.acceleo.ide.ui.editors.template.actionSet</tags>
<tags>persp.actionSet:org.eclipse.wst.jsdt.chromium.debug.ui.actionSets</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.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>
<tags>persp.viewSC:org.eclipse.mylyn.tasks.ui.views.tasks</tags>
<tags>persp.newWizSC:org.eclipse.mylyn.tasks.ui.wizards.new.repository.task</tags>
<tags>persp.perspSC:org.eclipse.wst.jsdt.ui.JavaPerspective</tags>
<children xsi:type="basic:PartSashContainer" xmi:id="_e5-YsXffEemHMbmgLRRGog" selectedElement="_e5-_tXffEemHMbmgLRRGog" horizontal="true">
<children xsi:type="basic:PartSashContainer" xmi:id="_e5-YsnffEemHMbmgLRRGog" containerData="3307" selectedElement="_e5-Ys3ffEemHMbmgLRRGog">
<children xsi:type="basic:PartStack" xmi:id="_e5-Ys3ffEemHMbmgLRRGog" elementId="left" containerData="6000" selectedElement="_e5-YtHffEemHMbmgLRRGog">
<tags>org.eclipse.e4.primaryNavigationStack</tags>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-YtHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.PackageExplorer" ref="_e5_ByXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-YtXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_e5_CJ3ffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_sHffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_e5_CKHffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_sXffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigator.ProjectExplorer" toBeRendered="false" ref="_e5_CKXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_snffEemHMbmgLRRGog" elementId="org.eclipse.jdt.junit.ResultView" ref="_e5_CSHffEemHMbmgLRRGog"/>
</children>
<children xsi:type="basic:PartStack" xmi:id="_e5-_s3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewMStack" toBeRendered="false" containerData="4000">
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_tHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesView" toBeRendered="false" ref="_e5_CR3ffEemHMbmgLRRGog"/>
</children>
</children>
<children xsi:type="basic:PartSashContainer" xmi:id="_e5-_tXffEemHMbmgLRRGog" containerData="6693" selectedElement="_e5-_tnffEemHMbmgLRRGog">
<children xsi:type="basic:PartSashContainer" xmi:id="_e5-_tnffEemHMbmgLRRGog" containerData="7500" selectedElement="_e5-_t3ffEemHMbmgLRRGog" horizontal="true">
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_t3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.editorss" containerData="9000" ref="_e5_BTXffEemHMbmgLRRGog"/>
<children xsi:type="basic:PartSashContainer" xmi:id="_e5-_uHffEemHMbmgLRRGog" containerData="1000">
<children xsi:type="basic:PartStack" xmi:id="_e5-_uXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.views.tasksMStack" containerData="5000" selectedElement="_e5-_unffEemHMbmgLRRGog">
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_unffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" ref="_e5_CYXffEemHMbmgLRRGog"/>
</children>
<children xsi:type="basic:PartStack" xmi:id="_e5-_u3ffEemHMbmgLRRGog" elementId="right" containerData="5000" selectedElement="_e5-_vHffEemHMbmgLRRGog">
<tags>org.eclipse.e4.secondaryNavigationStack</tags>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_vHffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ContentOutline" ref="_e5_BpXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_vXffEemHMbmgLRRGog" elementId="org.eclipse.ui.texteditor.TemplatesView" toBeRendered="false" ref="_e5_CRXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_vnffEemHMbmgLRRGog" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_e5_CRnffEemHMbmgLRRGog"/>
</children>
</children>
</children>
<children xsi:type="basic:PartStack" xmi:id="_e5-_v3ffEemHMbmgLRRGog" elementId="bottom" containerData="2500" selectedElement="_e5-_xHffEemHMbmgLRRGog">
<tags>org.eclipse.e4.secondaryDataStack</tags>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_wHffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ProblemView" ref="_e5_BxXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_wXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.JavadocView" ref="_e5_CKnffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_wnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.SourceView" ref="_e5_CLXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_w3ffEemHMbmgLRRGog" elementId="org.eclipse.search.ui.views.SearchView" toBeRendered="false" ref="_e5_CMHffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_xHffEemHMbmgLRRGog" elementId="org.eclipse.ui.console.ConsoleView" ref="_e5_CMXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_xXffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_e5_CQ3ffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_xnffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ProgressView" toBeRendered="false" ref="_e5_CRHffEemHMbmgLRRGog"/>
</children>
</children>
</children>
</children>
<children xsi:type="advanced:Perspective" xmi:id="_e5-_x3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.DebugPerspective" selectedElement="_e5-_yHffEemHMbmgLRRGog" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/$nl$/icons/full/eview16/debug_persp.png">
<persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:org.eclipse.debug.ui.commands.RunToLine,persp.hideToolbarSC:org.eclipse.jdt.ui.actions.OpenProjectWizard,persp.hideToolbarSC:print,persp.hideToolbarSC:org.eclipse.ui.edit.text.toggleShowSelectedElementOnly,"/>
<tags>persp.actionSet:org.eclipse.mylyn.doc.actionSet</tags>
<tags>persp.actionSet:org.eclipse.mylyn.tasks.ui.navigation</tags>
<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.acceleo.ide.ui.editors.template.actionSet</tags>
<tags>persp.actionSet:org.eclipse.wst.jsdt.chromium.debug.ui.actionSets</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:org.eclipse.ant.ui.views.AntView</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.actionSet:org.eclipse.dltk.debug.ui.ScriptDebugActionSet</tags>
<tags>persp.viewSC:org.eclipse.dltk.debug.ui.ScriptDisplayView</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.showIn:org.eclipse.ui.views.ResourceNavigator</tags>
<tags>persp.showIn:org.eclipse.php.ui.explorer</tags>
<tags>persp.actionSet:org.eclipse.php.debug.ui.actionSet</tags>
<tags>persp.actionSet:org.eclipse.php.ui.text.php.actionSet.presentation</tags>
<tags>persp.actionSet:org.eclipse.php.ui.PHPActionSet</tags>
<tags>persp.actionSet:org.eclipse.php.ui.A_OpenActionSet</tags>
<tags>persp.perspSC:org.eclipse.php.perspective</tags>
<tags>persp.perspSC:org.eclipse.wst.jsdt.ui.JavaPerspective</tags>
<tags>persp.showIn:org.eclipse.wst.jsdt.ui.PackageExplorer</tags>
<tags>persp.perspSC:org.eclipse.wst.xml.ui.perspective</tags>
<children xsi:type="basic:PartSashContainer" xmi:id="_e5-_yHffEemHMbmgLRRGog" selectedElement="_e5-_yXffEemHMbmgLRRGog">
<children xsi:type="basic:PartSashContainer" xmi:id="_e5-_yXffEemHMbmgLRRGog" containerData="7500" selectedElement="_e5-_2HffEemHMbmgLRRGog">
<children xsi:type="basic:PartSashContainer" xmi:id="_e5-_ynffEemHMbmgLRRGog" containerData="4500" selectedElement="_e5-_y3ffEemHMbmgLRRGog" horizontal="true">
<children xsi:type="basic:PartStack" xmi:id="_e5-_y3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.internal.ui.NavigatorFolderView" containerData="5000" selectedElement="_e5-_zHffEemHMbmgLRRGog">
<tags>org.eclipse.e4.primaryNavigationStack</tags>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_zHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.DebugView" ref="_e5_CinffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_zXffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigator.ProjectExplorer" toBeRendered="false" ref="_e5_CKXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_znffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.ScriptExplorer" toBeRendered="false" ref="_e5_Cl3ffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_z3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.PackageExplorer" toBeRendered="false" ref="_e5_ByXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_0HffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_e5_CJ3ffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_0XffEemHMbmgLRRGog" elementId="org.eclipse.wst.server.ui.ServersView" ref="_e5_CnXffEemHMbmgLRRGog"/>
</children>
<children xsi:type="basic:PartStack" xmi:id="_e5-_0nffEemHMbmgLRRGog" elementId="org.eclipse.debug.internal.ui.ToolsFolderView" containerData="5000" selectedElement="_e5-_03ffEemHMbmgLRRGog">
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_03ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.VariableView" ref="_e5_CjXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_1HffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.BreakpointView" ref="_e5_CkHffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_1XffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.RegisterView" toBeRendered="false" ref="_e5_ClnffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_1nffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.ExpressionView" ref="_e5_Ck3ffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_13ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView" ref="_e5_CmHffEemHMbmgLRRGog"/>
</children>
</children>
<children xsi:type="basic:PartSashContainer" xmi:id="_e5-_2HffEemHMbmgLRRGog" containerData="5500" selectedElement="_e5-_2XffEemHMbmgLRRGog" horizontal="true">
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_2XffEemHMbmgLRRGog" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_e5_BTXffEemHMbmgLRRGog"/>
<children xsi:type="basic:PartStack" xmi:id="_e5-_2nffEemHMbmgLRRGog" elementId="org.eclipse.debug.internal.ui.OutlineFolderView" containerData="2500" selectedElement="_e5-_23ffEemHMbmgLRRGog">
<tags>org.eclipse.e4.secondaryNavigationStack</tags>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_23ffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ContentOutline" ref="_e5_BpXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_3HffEemHMbmgLRRGog" elementId="org.eclipse.ant.ui.views.AntView" toBeRendered="false" ref="_e5_CRnffEemHMbmgLRRGog"/>
</children>
</children>
</children>
<children xsi:type="basic:PartStack" xmi:id="_e5-_3XffEemHMbmgLRRGog" elementId="org.eclipse.debug.internal.ui.ConsoleFolderView" containerData="2500" selectedElement="_e5-_3nffEemHMbmgLRRGog">
<tags>org.eclipse.e4.secondaryDataStack</tags>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_3nffEemHMbmgLRRGog" elementId="org.eclipse.ui.console.ConsoleView" ref="_e5_CMXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_33ffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.TaskList" ref="_e5_CiXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_4HffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_e5_CQ3ffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_4XffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.PropertySheet" toBeRendered="false" ref="_e5_BwnffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_4nffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.DisplayView" toBeRendered="false" ref="_e5_CmXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_43ffEemHMbmgLRRGog" elementId="org.eclipse.search.SearchResultView" toBeRendered="false" ref="_e5_CmnffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_5HffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.PHPDebugOutput" ref="_e5_Cm3ffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_5XffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.PHPBrowserOutput" ref="_e5_CnHffEemHMbmgLRRGog"/>
</children>
</children>
</children>
</children>
<children xsi:type="basic:PartStack" xmi:id="_e5-_5nffEemHMbmgLRRGog" elementId="stickyFolderRight" toBeRendered="false" containerData="2500">
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_53ffEemHMbmgLRRGog" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_e5_BSHffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_6HffEemHMbmgLRRGog" elementId="org.eclipse.ui.internal.introview" toBeRendered="false" ref="_e5_BSXffEemHMbmgLRRGog"/>
<children xsi:type="advanced:Placeholder" xmi:id="_e5-_6XffEemHMbmgLRRGog" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" toBeRendered="false" ref="_e5_BTHffEemHMbmgLRRGog"/>
</children>
</children>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_BSHffEemHMbmgLRRGog" 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" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.help.ui.internal.views.HelpView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.help.ui"/>
<tags>View</tags>
<tags>categoryTag:Help</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_BSXffEemHMbmgLRRGog" elementId="org.eclipse.ui.internal.introview" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.ViewIntroAdapterPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
<menus xmi:id="_e5_BSnffEemHMbmgLRRGog" elementId="org.eclipse.ui.internal.introview">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_e5_BS3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.internal.introview" visible="false"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_BTHffEemHMbmgLRRGog" 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" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.cheatsheets.views.CheatSheetView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.cheatsheets"/>
<tags>View</tags>
<tags>categoryTag:Help</tags>
</sharedElements>
<sharedElements xsi:type="advanced:Area" xmi:id="_e5_BTXffEemHMbmgLRRGog" elementId="org.eclipse.ui.editorss" selectedElement="_e5_BTnffEemHMbmgLRRGog">
<children xsi:type="basic:PartStack" xmi:id="_e5_BTnffEemHMbmgLRRGog" elementId="org.eclipse.e4.primaryDataStack" selectedElement="_e5_BU3ffEemHMbmgLRRGog">
<tags>org.eclipse.e4.primaryDataStack</tags>
<tags>EditorStack</tags>
<tags>active</tags>
<tags>noFocus</tags>
<children xsi:type="basic:Part" xmi:id="_e5_BT3ffEemHMbmgLRRGog" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ApplicationRectangle.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.png" closeable="true">
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor" name="ApplicationRectangle.java" partName="ApplicationRectangle.java" title="ApplicationRectangle.java" tooltip="tp1.1_Rectangle/src/rectangles/ApplicationRectangle.java">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/tp1.1_Rectangle/src/rectangles/ApplicationRectangle.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="0" selectionOffset="21" selectionTopPixel="0"/>
</editor>"/>
<tags>Editor</tags>
<tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
<tags>removeOnHide</tags>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_BUHffEemHMbmgLRRGog" elementId="#CompilationUnitEditorContext">
<tags>menuContribution:popup</tags>
<tags>popup:#CompilationUnitEditorContext</tags>
<tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags>
<tags>popup:#AbstractTextEditorContext</tags>
</menus>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_BUXffEemHMbmgLRRGog" elementId="#CompilationUnitRulerContext">
<tags>menuContribution:popup</tags>
<tags>popup:#CompilationUnitRulerContext</tags>
<tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags>
<tags>popup:#AbstractTextEditorRulerContext</tags>
</menus>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_BUnffEemHMbmgLRRGog" elementId="#OverviewRulerContext">
<tags>menuContribution:popup</tags>
<tags>popup:#OverviewRulerContext</tags>
</menus>
</children>
<children xsi:type="basic:Part" xmi:id="_e5_BU3ffEemHMbmgLRRGog" elementId="org.eclipse.e4.ui.compatibility.editor" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor" label="ManipulateurRectangle.java" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/obj16/jcu_obj.png" closeable="true">
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<editor id="org.eclipse.jdt.ui.CompilationUnitEditor" name="ManipulateurRectangle.java" partName="ManipulateurRectangle.java" title="ManipulateurRectangle.java" tooltip="tp1.1_Rectangle/src/rectangles/ManipulateurRectangle.java">
<input factoryID="org.eclipse.ui.part.FileEditorInputFactory" path="/tp1.1_Rectangle/src/rectangles/ManipulateurRectangle.java"/>
<editorState selectionHorizontalPixel="0" selectionLength="1" selectionOffset="372" selectionTopPixel="0"/>
</editor>"/>
<tags>Editor</tags>
<tags>org.eclipse.jdt.ui.CompilationUnitEditor</tags>
<tags>removeOnHide</tags>
<tags>active</tags>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_BVHffEemHMbmgLRRGog" elementId="#CompilationUnitEditorContext">
<tags>menuContribution:popup</tags>
<tags>popup:#CompilationUnitEditorContext</tags>
<tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.EditorContext</tags>
<tags>popup:#AbstractTextEditorContext</tags>
</menus>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_BoHffEemHMbmgLRRGog" elementId="#CompilationUnitRulerContext">
<tags>menuContribution:popup</tags>
<tags>popup:#CompilationUnitRulerContext</tags>
<tags>popup:org.eclipse.jdt.ui.CompilationUnitEditor.RulerContext</tags>
<tags>popup:#AbstractTextEditorRulerContext</tags>
</menus>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_BoXffEemHMbmgLRRGog" elementId="#OverviewRulerContext">
<tags>menuContribution:popup</tags>
<tags>popup:#OverviewRulerContext</tags>
</menus>
</children>
</children>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_BonffEemHMbmgLRRGog" elementId="org.eclipse.sirius.ui.tools.views.model.explorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Model Explorer" iconURI="platform:/plugin/org.eclipse.sirius.ui.ext/icons/full/others/ModelExplorer.gif" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.sirius.ui.tools.internal.views.modelexplorer.ModelExplorerView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.sirius.ui.ext"/>
<tags>View</tags>
<tags>categoryTag:Sirius</tags>
<menus xmi:id="_e5_Bo3ffEemHMbmgLRRGog" elementId="org.eclipse.sirius.ui.tools.views.model.explorer">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_e5_BpHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.ui.tools.views.model.explorer"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_BpXffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ContentOutline" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/outline_co.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.contentoutline.ContentOutline"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
<menus xmi:id="_e5_BpnffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ContentOutline">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_BsXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.outline">
<tags>menuContribution:popup</tags>
<tags>popup:org.eclipse.jdt.ui.outline</tags>
</menus>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_BsnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.outline">
<tags>menuContribution:popup</tags>
<tags>popup:org.eclipse.jdt.ui.outline</tags>
</menus>
<toolbar xmi:id="_e5_Bs3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ContentOutline"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_BwnffEemHMbmgLRRGog" 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.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.properties.PropertySheet"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
<menus xmi:id="_e5_Bw3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.PropertySheet">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_e5_BxHffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.PropertySheet"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_BxXffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ProblemView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.ProblemsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view PRIMARY_SORT_FIELD="org.eclipse.ui.ide.severityAndDescriptionField" categoryGroup="org.eclipse.ui.ide.severity" markerContentGenerator="org.eclipse.ui.ide.problemsGenerator" partName="Problems">
<expanded>
<category IMemento.internal.id="Warnings (8 items)"/>
</expanded>
<columnWidths org.eclipse.ui.ide.locationField="90" org.eclipse.ui.ide.markerType="827" org.eclipse.ui.ide.pathField="120" org.eclipse.ui.ide.resourceField="90" org.eclipse.ui.ide.severityAndDescriptionField="300"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.severityAndDescriptionField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.resourceField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.pathField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.locationField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.markerType"/>
</view>"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
<menus xmi:id="_e5_BxnffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ProblemView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_Bx3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ProblemView">
<tags>menuContribution:popup</tags>
<tags>popup:org.eclipse.ui.views.ProblemView</tags>
<tags>popup:org.eclipse.ui.ide.MarkersView</tags>
</menus>
<toolbar xmi:id="_e5_ByHffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ProblemView" visible="false"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_ByXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.PackageExplorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view group_libraries="1" layout="2" linkWithEditor="0" rootMode="1" workingSetName="Aggregate for window 1521630674876">
<customFilters userDefinedPatternsEnabled="false">
<xmlDefinedFilters>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.StaticsFilter" isEnabled="false"/>
<child filterId="org.eclipse.mylyn.java.ui.MembersFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer_patternFilterId_.*" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonSharedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.SyntheticMembersFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ContainedLibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.HideInnerClassFilesFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyInnerPackageFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ClosedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.EmptyLibraryContainerFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.PackageDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ImportDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaElementFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.pde.ui.BinaryProjectFilter1" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.CuAndClassFileFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyPackageFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonPublicFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LocalTypesFilter" isEnabled="false"/>
<child filterId="org.eclipse.pde.ui.ExternalPluginLibrariesFilter1" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.FieldsFilter" isEnabled="false"/>
</xmlDefinedFilters>
</customFilters>
</view>"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
<menus xmi:id="_e5_BynffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.PackageExplorer">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_B4HffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.PackageExplorer">
<tags>menuContribution:popup</tags>
<tags>popup:org.eclipse.jdt.ui.PackageExplorer</tags>
</menus>
<toolbar xmi:id="_e5_CIXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.PackageExplorer"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CJ3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.TypeHierarchy" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/class_hi.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CKHffEemHMbmgLRRGog" 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.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.navigator.ResourceNavigator"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CKXffEemHMbmgLRRGog" 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" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.navigator.resources.ProjectExplorer"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.navigator.resources"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CKnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.JavadocView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.JavadocView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
<menus xmi:id="_e5_CK3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.JavadocView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_e5_CLHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.JavadocView" visible="false"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CLXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.SourceView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.SourceView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
<menus xmi:id="_e5_CLnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.SourceView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_e5_CL3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.SourceView" visible="false"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CMHffEemHMbmgLRRGog" 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" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.search2.internal.ui.SearchView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CMXffEemHMbmgLRRGog" elementId="org.eclipse.ui.console.ConsoleView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console/icons/full/cview16/console_view.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.console.ConsoleView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.console"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
<menus xmi:id="_e5_CMnffEemHMbmgLRRGog" elementId="org.eclipse.ui.console.ConsoleView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_CM3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu">
<tags>menuContribution:popup</tags>
<tags>popup:org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu</tags>
</menus>
<toolbar xmi:id="_e5_CNHffEemHMbmgLRRGog" elementId="org.eclipse.ui.console.ConsoleView"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CQ3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.BookmarkView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/bkmrk_nav.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.BookmarksView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CRHffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ProgressView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/pview.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.progress.ProgressView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CRXffEemHMbmgLRRGog" elementId="org.eclipse.ui.texteditor.TemplatesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Templates" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/templates.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.texteditor.templates.TemplatesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CRnffEemHMbmgLRRGog" elementId="org.eclipse.ant.ui.views.AntView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ant.internal.ui.views.AntView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ant.ui"/>
<tags>View</tags>
<tags>categoryTag:Ant</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CR3ffEemHMbmgLRRGog" 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" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.repository.RepositoriesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CSHffEemHMbmgLRRGog" 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" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.junit.ui.TestRunnerViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.junit"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view failuresOnly="false" ignoredOnly="false" layout="1" orientation="2" ratio="500" scroll="false" time="true"/>"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
<tags>busy</tags>
<menus xmi:id="_e5_CSXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.junit.ResultView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_CVXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.junit.ResultView">
<tags>menuContribution:popup</tags>
<tags>popup:org.eclipse.jdt.junit.ResultView</tags>
</menus>
<toolbar xmi:id="_e5_CVnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.junit.ResultView" visible="false"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CYXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Task List" iconURI="platform:/plugin/org.eclipse.mylyn.tasks.ui/icons/eview16/task-list.gif" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.tasks.ui.views.TaskListView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.tasks.ui"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view linkWithEditor="true" presentation="org.eclipse.mylyn.tasks.ui.categorized">
<sorter groupBy="CATEGORY_QUERY">
<sorter>
<sort0 sortDirection="1" sortKey="PRIORITY"/>
<sort1 sortDirection="1" sortKey="RANK"/>
<sort2 sortDirection="1" sortKey="DATE_CREATED"/>
<sort3 sortDirection="1" sortKey="NONE"/>
<sort4 sortDirection="1" sortKey="NONE"/>
<sort5 sortDirection="1" sortKey="NONE"/>
<sort6 sortDirection="1" sortKey="NONE"/>
<sort7 sortDirection="1" sortKey="NONE"/>
</sorter>
</sorter>
<filteredTreeFindHistory/>
</view>"/>
<tags>View</tags>
<tags>categoryTag:Mylyn</tags>
<menus xmi:id="_e5_CYnffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.views.tasks">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_CeHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.menus.activeTask">
<tags>menuContribution:popup</tags>
<tags>popup:org.eclipse.mylyn.tasks.ui.menus.activeTask</tags>
</menus>
<menus xsi:type="menu:PopupMenu" xmi:id="_e5_CeXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.views.tasks">
<tags>menuContribution:popup</tags>
<tags>popup:org.eclipse.mylyn.tasks.ui.views.tasks</tags>
</menus>
<toolbar xmi:id="_e5_CenffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.views.tasks"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CiXffEemHMbmgLRRGog" 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.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.TasksView"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CinffEemHMbmgLRRGog" 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.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.launch.LaunchView"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
<menus xmi:id="_e5_Ci3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.DebugView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_e5_CjHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.DebugView"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CjXffEemHMbmgLRRGog" 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.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.variables.VariablesView"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
<menus xmi:id="_e5_CjnffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.VariableView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_e5_Cj3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.VariableView"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CkHffEemHMbmgLRRGog" 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.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.breakpoints.BreakpointsView"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
<menus xmi:id="_e5_CkXffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.BreakpointView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_e5_CknffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.BreakpointView"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_Ck3ffEemHMbmgLRRGog" 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.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.expression.ExpressionView"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
<menus xmi:id="_e5_ClHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.ExpressionView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_e5_ClXffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.ExpressionView"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_ClnffEemHMbmgLRRGog" 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.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.registers.RegistersView"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_Cl3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.ScriptExplorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Script Explorer" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/package.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.ui"/>
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.internal.ui.scriptview.ScriptExplorerPart"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CmHffEemHMbmgLRRGog" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Interactive Console" iconURI="platform:/plugin/org.eclipse.dltk.debug.ui/icons/full/eview16/debug_console.gif" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.debug.ui"/>
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.debug.ui.display.ScriptDisplayView"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CmXffEemHMbmgLRRGog" 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" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.debug.ui"/>
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.debug.ui.display.DisplayView"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CmnffEemHMbmgLRRGog" 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" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.search.internal.ui.SearchResultView"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_Cm3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.PHPDebugOutput" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Debug Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/debug_output.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.debug.ui"/>
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.debug.ui.views.DebugOutputView"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CnHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.PHPBrowserOutput" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Browser Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/browser_output.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.debug.ui"/>
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.debug.ui.views.DebugBrowserView"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_e5_CnXffEemHMbmgLRRGog" elementId="org.eclipse.wst.server.ui.ServersView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Servers" iconURI="platform:/plugin/org.eclipse.wst.server.ui/icons/cview16/servers_view.gif" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.server.ui"/>
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.server.ui.internal.cnf.ServersView2"/>
<tags>View</tags>
<tags>categoryTag:Server</tags>
</sharedElements>
<trimBars xmi:id="_e5_CnnffEemHMbmgLRRGog" elementId="org.eclipse.ui.main.toolbar">
<children xsi:type="menu:ToolBar" xmi:id="_e5_Cn3ffEemHMbmgLRRGog" elementId="group.file" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_e5_CoHffEemHMbmgLRRGog" elementId="group.file" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_e5_CoXffEemHMbmgLRRGog" elementId="org.eclipse.ui.workbench.file">
<tags>Draggable</tags>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_ConffEemHMbmgLRRGog" elementId="new.group">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_Co3ffEemHMbmgLRRGog" elementId="newWizardDropDown">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_CpHffEemHMbmgLRRGog" elementId="new.ext" visible="false">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_CpXffEemHMbmgLRRGog" elementId="save.group" visible="false">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_CpnffEemHMbmgLRRGog" elementId="save">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_Cp3ffEemHMbmgLRRGog" elementId="saveAll">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_CqHffEemHMbmgLRRGog" elementId="save.ext" visible="false">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:HandledToolItem" xmi:id="_e5_CqXffEemHMbmgLRRGog" elementId="print" visible="false" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.png" tooltip="Print" command="_e6BcZnffEemHMbmgLRRGog"/>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_CqnffEemHMbmgLRRGog" elementId="print.ext" visible="false">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_Cq3ffEemHMbmgLRRGog" elementId="build.group">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_CrHffEemHMbmgLRRGog" elementId="build.ext" visible="false">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_CrXffEemHMbmgLRRGog" elementId="additions">
<tags>Opaque</tags>
</children>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_e5_CrnffEemHMbmgLRRGog" elementId="additions" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_e5_Cr3ffEemHMbmgLRRGog" elementId="additions" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_e5_C2nffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.launchActionSet">
<tags>Draggable</tags>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C23ffEemHMbmgLRRGog" elementId="debug">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C3HffEemHMbmgLRRGog" elementId="org.eclipse.debug.internal.ui.actions.DebugDropDownAction">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C3XffEemHMbmgLRRGog" elementId="org.eclipse.debug.internal.ui.actions.RunDropDownAction">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C3nffEemHMbmgLRRGog" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar">
<tags>Opaque</tags>
</children>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_e5_C33ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet">
<tags>Draggable</tags>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C4HffEemHMbmgLRRGog" elementId="JavaWizards">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C4XffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.actions.OpenProjectWizard" visible="false">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C4nffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.actions.OpenPackageWizard">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C43ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.actions.NewTypeDropDown">
<tags>Opaque</tags>
</children>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_e5_C5HffEemHMbmgLRRGog" elementId="org.eclipse.search.searchActionSet">
<tags>Draggable</tags>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C5XffEemHMbmgLRRGog" elementId="Search">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C5nffEemHMbmgLRRGog" elementId="openType">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C53ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.openTask">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C6HffEemHMbmgLRRGog" elementId="org.eclipse.search.OpenSearchDialogPage">
<tags>Opaque</tags>
</children>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_e5_C6XffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.actionSet.presentation">
<tags>Draggable</tags>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C6nffEemHMbmgLRRGog" elementId="Presentation">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C63ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C7HffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C7XffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.java.ui.editor.folding.auto">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C7nffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.toggleWordWrap">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C73ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C8HffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C8XffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" visible="false">
<tags>Opaque</tags>
</children>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_e5_C8nffEemHMbmgLRRGog" elementId="group.nav" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_e5_C83ffEemHMbmgLRRGog" elementId="group.nav" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_e5_C9HffEemHMbmgLRRGog" elementId="org.eclipse.ui.workbench.navigate">
<tags>Draggable</tags>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C9XffEemHMbmgLRRGog" elementId="history.group">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C9nffEemHMbmgLRRGog" elementId="group.application" visible="false">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C93ffEemHMbmgLRRGog" elementId="backardHistory">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C-HffEemHMbmgLRRGog" elementId="forwardHistory">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C-XffEemHMbmgLRRGog" elementId="pin.group">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:HandledToolItem" xmi:id="_e5_C-nffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.pinEditor" visible="false" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.png" tooltip="Pin Editor" type="Check" command="_e6A5LXffEemHMbmgLRRGog"/>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C-3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.gotoNextAnnotation">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C_HffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.gotoPreviousAnnotation">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_C_XffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition">
<tags>Opaque</tags>
</children>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_e5_C_nffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.CompilationUnitEditor" visible="false">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_e5_C_3ffEemHMbmgLRRGog" elementId="group.editor" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_e5_DAHffEemHMbmgLRRGog" elementId="group.editor" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_e5_DAXffEemHMbmgLRRGog" elementId="group.help" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_e5_DAnffEemHMbmgLRRGog" elementId="group.help" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_e5_DA3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.workbench.help" visible="false">
<tags>Draggable</tags>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_DBHffEemHMbmgLRRGog" elementId="group.help">
<tags>Opaque</tags>
</children>
<children xsi:type="menu:DirectToolItem" xmi:id="_e5_DBXffEemHMbmgLRRGog" elementId="group.application" visible="false">
<tags>Opaque</tags>
</children>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_e5_DBnffEemHMbmgLRRGog" elementId="PerspectiveSpacer" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
<tags>stretch</tags>
<tags>SHOW_RESTORE_MENU</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_e5_DCnffEemHMbmgLRRGog" elementId="PerspectiveSwitcher" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher">
<tags>Draggable</tags>
<tags>HIDEABLE</tags>
<tags>SHOW_RESTORE_MENU</tags>
</children>
</trimBars>
<trimBars xmi:id="_e5_DEXffEemHMbmgLRRGog" elementId="org.eclipse.ui.trim.status" side="Bottom">
<children xsi:type="menu:ToolControl" xmi:id="_e5_DEnffEemHMbmgLRRGog" 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="_e5_DE3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.HeapStatus" toBeRendered="false" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_e5_DFHffEemHMbmgLRRGog" elementId="org.eclipse.ui.ProgressBar" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
<tags>Draggable</tags>
</children>
</trimBars>
<trimBars xmi:id="_e5_DHHffEemHMbmgLRRGog" elementId="org.eclipse.ui.trim.vertical1" toBeRendered="false" side="Left">
<children xsi:type="menu:ToolControl" xmi:id="_e5_DHXffEemHMbmgLRRGog" elementId="org.eclipse.ui.ide.perspectivestack(minimized)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack">
<tags>TrimStack</tags>
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_e5_DHnffEemHMbmgLRRGog" elementId="left(IDEWindow).(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>
<tags>Draggable</tags>
</children>
</trimBars>
<trimBars xmi:id="_e5_DH3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.trim.vertical2" toBeRendered="false" side="Right">
<children xsi:type="menu:ToolControl" xmi:id="_e5_DIHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.views.tasksMStack(IDEWindow).(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>
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_e5_DIXffEemHMbmgLRRGog" elementId="right(IDEWindow).(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>
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_e5_DInffEemHMbmgLRRGog" elementId="bottom(IDEWindow).(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>
<tags>Draggable</tags>
</children>
</trimBars>
</children>
<handlers xmi:id="_e5_DI3ffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.handler.mark_duplicate_ids" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" contributionURI="bundleclass://org.eclipse.e4.tools.emf.ui/org.eclipse.e4.tools.emf.ui.internal.handlers.MarkDuplicateElementIdsHandler" command="_e6BdRXffEemHMbmgLRRGog"/>
<handlers xmi:id="_e5_DJHffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.handler.mark_duplicate_labels" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" contributionURI="bundleclass://org.eclipse.e4.tools.emf.ui/org.eclipse.e4.tools.emf.ui.internal.handlers.MarkDuplicateLabelsHandler" command="_e6BdRnffEemHMbmgLRRGog"/>
<handlers xmi:id="_e5_DJXffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.handler.mark_duplicate_attributes" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" contributionURI="bundleclass://org.eclipse.e4.tools.emf.ui/org.eclipse.e4.tools.emf.ui.internal.handlers.MarkDuplicateAttributesHandler" command="_e6BdR3ffEemHMbmgLRRGog"/>
<handlers xmi:id="_e5_DJnffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.handler.repair_duplicate_ids" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" contributionURI="bundleclass://org.eclipse.e4.tools.emf.ui/org.eclipse.e4.tools.emf.ui.internal.handlers.RepairDuplicateItemsHandler" command="_e6BdSHffEemHMbmgLRRGog"/>
<handlers xmi:id="_e5_DJ3ffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.handler.unmark" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" contributionURI="bundleclass://org.eclipse.e4.tools.emf.ui/org.eclipse.e4.tools.emf.ui.internal.handlers.UnmarkItemsHandler" command="_e6BdSXffEemHMbmgLRRGog"/>
<handlers xmi:id="_e5_DKHffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.handler.autosizeColumns" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" contributionURI="bundleclass://org.eclipse.e4.tools.emf.ui/org.eclipse.e4.tools.emf.ui.internal.handlers.AutosizeColumnsHandler" command="_e6BdSnffEemHMbmgLRRGog"/>
<handlers xmi:id="_e5_DKXffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.handler.resetToDefault" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" contributionURI="bundleclass://org.eclipse.e4.tools.emf.ui/org.eclipse.e4.tools.emf.ui.internal.handlers.ResetToDefaultHandler" command="_e6BdS3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_DKnffEemHMbmgLRRGog" contributorURI="platform:/plugin/org.eclipse.platform" bindingContext="_e5_pAHffEemHMbmgLRRGog">
<bindings xmi:id="_e5_DK3ffEemHMbmgLRRGog" keySequence="CTRL+A" command="_e6A3v3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DLHffEemHMbmgLRRGog" keySequence="CTRL+SPACE" command="_e6BcJHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DLXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+SPACE" command="_e6A3EnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DLnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+D" command="_e6Bc4HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DL3ffEemHMbmgLRRGog" keySequence="SHIFT+INSERT" command="_e6A2C3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DMHffEemHMbmgLRRGog" keySequence="ALT+PAGE_UP" command="_e6A4BHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DMXffEemHMbmgLRRGog" keySequence="CTRL+C" command="_e6A4KnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DMnffEemHMbmgLRRGog" keySequence="ALT+PAGE_DOWN" command="_e6A47XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DM3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+Z" command="_e6A383ffEemHMbmgLRRGog">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_e5_DNHffEemHMbmgLRRGog" keySequence="CTRL+V" command="_e6A2C3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DNXffEemHMbmgLRRGog" keySequence="CTRL+Z" command="_e6A3OnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DNnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+F3" command="_e6Bcc3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DN3ffEemHMbmgLRRGog" keySequence="CTRL+X" command="_e6A3QnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DOHffEemHMbmgLRRGog" keySequence="CTRL+1" command="_e6A25XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DOXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+L" command="_e6Bcs3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DOnffEemHMbmgLRRGog" keySequence="CTRL+F10" command="_e6A2OXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DO3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+I" command="_e6A2u3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DPHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+F1" command="_e6A2inffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DPXffEemHMbmgLRRGog" keySequence="CTRL+INSERT" command="_e6A4KnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DPnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+F2" command="_e6A4zXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DP3ffEemHMbmgLRRGog" keySequence="SHIFT+DEL" command="_e6A3QnffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_DQHffEemHMbmgLRRGog" elementId="org.eclipse.ui.contexts.window" bindingContext="_e5_pAXffEemHMbmgLRRGog">
<bindings xmi:id="_e5_DQXffEemHMbmgLRRGog" keySequence="CTRL+B" command="_e6A2F3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DQnffEemHMbmgLRRGog" keySequence="ALT+ARROW_RIGHT" command="_e6A3Z3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DQ3ffEemHMbmgLRRGog" keySequence="ALT+CTRL+SHIFT+ARROW_RIGHT" command="_e6A4d3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DRHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+A" command="_e6A463ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DRXffEemHMbmgLRRGog" keySequence="ALT+CTRL+SHIFT+ARROW_UP" command="_e6A4kXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DRnffEemHMbmgLRRGog" keySequence="ALT+CTRL+SHIFT+A" command="_e6A4-nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DR3ffEemHMbmgLRRGog" keySequence="ALT+C" command="_e6BcoHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DSHffEemHMbmgLRRGog" keySequence="ALT+ARROW_LEFT" command="_e6A2PXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DSXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+D P" command="_e6BcYXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DSnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+D J" command="_e6A5JXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DS3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+D Q" command="_e6A31XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DTHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+D W" command="_e6A2E3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DTXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+D R" command="_e6A39XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DTnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+D H" command="_e6A43nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DT3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+D A" command="_e6BcQXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DUHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+D T" command="_e6A10XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DUXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+D E" command="_e6BdK3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DUnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+D O" command="_e6A4M3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DU3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+R" command="_e6BdQXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DVHffEemHMbmgLRRGog" keySequence="CTRL+ARROW_LEFT" command="_e6Bc7HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DVXffEemHMbmgLRRGog" keySequence="CTRL+E" command="_e6A3MXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DVnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+E" command="_e6A2mXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DV3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+F" command="_e6BcfnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DWHffEemHMbmgLRRGog" keySequence="CTRL+F" command="_e6A2Y3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DWXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+G" command="_e6A4n3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DWnffEemHMbmgLRRGog" keySequence="CTRL+G" command="_e6A1wnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DW3ffEemHMbmgLRRGog" keySequence="ALT+CTRL+SHIFT+F" command="_e6A2tHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DXHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+H" command="_e6A3KXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DXXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+G" command="_e6BdEnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DXnffEemHMbmgLRRGog" keySequence="ALT+CTRL+G" command="_e6A4yXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DX3ffEemHMbmgLRRGog" keySequence="CTRL+H" command="_e6BcI3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DYHffEemHMbmgLRRGog" keySequence="ALT+CTRL+H" command="_e6A2LnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DYXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+I" command="_e6A2O3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DYnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+H" command="_e6A4IXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DY3ffEemHMbmgLRRGog" keySequence="ALT+E" command="_e6A4s3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DZHffEemHMbmgLRRGog" keySequence="CTRL+#" command="_e6A2OnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DZXffEemHMbmgLRRGog" keySequence="CTRL+ARROW_RIGHT" command="_e6A22XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DZnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+V" command="_e6BcmXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_DZ3ffEemHMbmgLRRGog" keySequence="ALT+P" command="_e6A2TnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_mwHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+N" command="_e6A3O3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_mwXffEemHMbmgLRRGog" keySequence="SHIFT+F2" command="_e6A4mXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_mwnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F8" command="_e6A3FXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_mw3ffEemHMbmgLRRGog" keySequence="CTRL+S" command="_e6A3mHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_mxHffEemHMbmgLRRGog" keySequence="F5" command="_e6A3dXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_mxXffEemHMbmgLRRGog" keySequence="F12" command="_e6BcJ3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_mxnffEemHMbmgLRRGog" keySequence="CTRL+F6" command="_e6A2bnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_mx3ffEemHMbmgLRRGog" keySequence="CTRL+{" command="_e6A3FnffEemHMbmgLRRGog">
<parameters xmi:id="_e5_myHffEemHMbmgLRRGog" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="false"/>
</bindings>
<bindings xmi:id="_e5_myXffEemHMbmgLRRGog" keySequence="CTRL+P" command="_e6BcZnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_mynffEemHMbmgLRRGog" keySequence="CTRL+-" command="_e6BctXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_my3ffEemHMbmgLRRGog" keySequence="ALT+F11" command="_e6A2anffEemHMbmgLRRGog">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_e5_mzHffEemHMbmgLRRGog" keySequence="F4" command="_e6A2H3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_mzXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Z" command="_e6A4HHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_mznffEemHMbmgLRRGog" keySequence="ALT+SHIFT+F7" command="_e6A4_nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_mz3ffEemHMbmgLRRGog" keySequence="CTRL+W" command="_e6A3_HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m0HffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F3" command="_e6BcX3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m0XffEemHMbmgLRRGog" keySequence="CTRL+U" command="_e6A35XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m0nffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_e6A3GHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m03ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+W" command="_e6Bc9XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m1HffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F12" command="_e6A15HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m1XffEemHMbmgLRRGog" keySequence="ALT+CTRL+SHIFT+M" command="_e6Bc1XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m1nffEemHMbmgLRRGog" keySequence="CTRL+F8" command="_e6A263ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m13ffEemHMbmgLRRGog" keySequence="CTRL+3" command="_e6A28nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m2HffEemHMbmgLRRGog" keySequence="F3" command="_e6A22nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m2XffEemHMbmgLRRGog" keySequence="CTRL+F4" command="_e6A3_HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m2nffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+W" command="_e6A3QHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m23ffEemHMbmgLRRGog" keySequence="CTRL+F12" command="_e6A2gnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m3HffEemHMbmgLRRGog" keySequence="ALT+CR" command="_e6BcAnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m3XffEemHMbmgLRRGog" keySequence="ALT+SHIFT+V" command="_e6A3pXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m3nffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+T" command="_e6A3QXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m33ffEemHMbmgLRRGog" keySequence="ALT+CTRL+SHIFT+F12" command="_e6Bc5nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m4HffEemHMbmgLRRGog" keySequence="ALT+SHIFT+S" command="_e6A4FnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m4XffEemHMbmgLRRGog" keySequence="ALT+SHIFT+R" command="_e6A393ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m4nffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F6" command="_e6A4u3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m43ffEemHMbmgLRRGog" keySequence="CTRL+6" command="_e6A2bXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m5HffEemHMbmgLRRGog" keySequence="ALT+F7" command="_e6A4WnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m5XffEemHMbmgLRRGog" keySequence="ALT+CTRL+U" command="_e6A2oHffEemHMbmgLRRGog">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_e5_m5nffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F4" command="_e6A3QHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m53ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F9" command="_e6A3snffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m6HffEemHMbmgLRRGog" keySequence="CTRL+F7" command="_e6A4K3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m6XffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F7" command="_e6Bc1nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m6nffEemHMbmgLRRGog" keySequence="CTRL+Q" command="_e6BceXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m63ffEemHMbmgLRRGog" keySequence="SHIFT+F5" command="_e6A3z3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m7HffEemHMbmgLRRGog" keySequence="F2" command="_e6A2FXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m7XffEemHMbmgLRRGog" keySequence="CTRL+." command="_e6Bc-3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m7nffEemHMbmgLRRGog" keySequence="CTRL+F9" command="_e6A2nnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m73ffEemHMbmgLRRGog" keySequence="CTRL+N" command="_e6BdF3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m8HffEemHMbmgLRRGog" keySequence="F11" command="_e6Bc0HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m8XffEemHMbmgLRRGog" keySequence="ALT+SHIFT+M" command="_e6Bc5XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m8nffEemHMbmgLRRGog" keySequence="CTRL+F11" command="_e6BclXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m83ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+N" command="_e6A4RHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m9HffEemHMbmgLRRGog" keySequence="CTRL+," command="_e6A2EXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m9XffEemHMbmgLRRGog" keySequence="ALT+SHIFT+J" command="_e6A3LnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m9nffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_e6A4rnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m93ffEemHMbmgLRRGog" keySequence="CTRL+TAB" command="_e6A2bnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m-HffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+TAB" command="_e6A4u3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m-XffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+O" command="_e6Bc2nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m-nffEemHMbmgLRRGog" keySequence="ALT+SHIFT+T" command="_e6A4VXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m-3ffEemHMbmgLRRGog" keySequence="ALT+-" command="_e6A4Q3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m_HffEemHMbmgLRRGog" keySequence="ALT+SHIFT+L" command="_e6A23nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m_XffEemHMbmgLRRGog" keySequence="DEL" command="_e6A2dXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m_nffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+S" command="_e6A4r3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_m_3ffEemHMbmgLRRGog" keySequence="CTRL+M" command="_e6BcGnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nAHffEemHMbmgLRRGog" keySequence="CTRL+_" command="_e6A3FnffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nAXffEemHMbmgLRRGog" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="true"/>
</bindings>
<bindings xmi:id="_e5_nAnffEemHMbmgLRRGog" keySequence="ALT+DEL" command="_e6A3l3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nA3ffEemHMbmgLRRGog" keySequence="CTRL+=" command="_e6A3a3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nBHffEemHMbmgLRRGog" keySequence="ALT+CTRL+SHIFT+ARROW_DOWN" command="_e6BdIXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nBXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+B" command="_e6A2fnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nBnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+C" command="_e6BcKXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nB3ffEemHMbmgLRRGog" keySequence="ALT+CTRL+B" command="_e6A443ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nCHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q P" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nCXffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.PackageExplorer"/>
</bindings>
<bindings xmi:id="_e5_nCnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+X O" command="_e6A4mnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nC3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+X E" command="_e6A4yHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nDHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+X Q" command="_e6A2tnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nDXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+X A" command="_e6A2EHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nDnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+X T" command="_e6A3vXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nD3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q Y" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nEHffEemHMbmgLRRGog" 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="_e5_nEXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q X" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nEnffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/>
</bindings>
<bindings xmi:id="_e5_nE3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q L" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nFHffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/>
</bindings>
<bindings xmi:id="_e5_nFXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q T" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nFnffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.TypeHierarchy"/>
</bindings>
<bindings xmi:id="_e5_nF3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+X J" command="_e6A48XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nGHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+X R" command="_e6A38XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nGXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q Z" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nGnffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/>
</bindings>
<bindings xmi:id="_e5_nG3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q J" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nHHffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.JavadocView"/>
</bindings>
<bindings xmi:id="_e5_nHXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q K" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nHnffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.mylyn.tasks.ui.views.tasks"/>
</bindings>
<bindings xmi:id="_e5_nH3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q S" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nIHffEemHMbmgLRRGog" 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="_e5_nIXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q O" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nInffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/>
</bindings>
<bindings xmi:id="_e5_nI3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q Q" command="_e6A42nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nJHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+X W" command="_e6A3DXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nJXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q B" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nJnffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/>
</bindings>
<bindings xmi:id="_e5_nJ3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+X H" command="_e6BcaHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nKHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q E" command="_e6BcUXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nKXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q H" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nKnffEemHMbmgLRRGog" 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="_e5_nK3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q D" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nLHffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.SourceView"/>
</bindings>
<bindings xmi:id="_e5_nLXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+X P" command="_e6Bc7XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nLnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q V" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nL3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/>
</bindings>
<bindings xmi:id="_e5_nMHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q C" command="_e6A42nffEemHMbmgLRRGog">
<parameters xmi:id="_e5_nMXffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/>
</bindings>
</bindingTables>
<bindingTables xmi:id="_e5_nMnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.javaEditorScope" bindingContext="_e5_pCXffEemHMbmgLRRGog">
<bindings xmi:id="_e5_nM3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+C" command="_e6A4RnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nNHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_e6A2T3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nNXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+ARROW_UP" command="_e6A4AXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nNnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+B" command="_e6BdKXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nN3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_DOWN" command="_e6A2iHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nOHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_UP" command="_e6A31HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nOXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F" command="_e6BcvnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nOnffEemHMbmgLRRGog" keySequence="CTRL+7" command="_e6A4RnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nO3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+P" command="_e6A4_XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nPHffEemHMbmgLRRGog" keySequence="CTRL+T" command="_e6A4UXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nPXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+U" command="_e6A5K3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nPnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+/" command="_e6A353ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nP3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+M" command="_e6A29HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nQHffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6A3wHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nQXffEemHMbmgLRRGog" keySequence="CTRL+F3" command="_e6Bc-HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nQnffEemHMbmgLRRGog" keySequence="CTRL+/" command="_e6A4RnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nQ3ffEemHMbmgLRRGog" keySequence="CTRL+I" command="_e6A3YHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nRHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+O" command="_e6A3NXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nRXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+\" command="_e6A2VnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nRnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_LEFT" command="_e6A3cnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nR3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_e6A3wnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nSHffEemHMbmgLRRGog" keySequence="CTRL+2 L" command="_e6A2RHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nSXffEemHMbmgLRRGog" keySequence="CTRL+2 M" command="_e6A3eHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nSnffEemHMbmgLRRGog" keySequence="CTRL+2 F" command="_e6Bc43ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nS3ffEemHMbmgLRRGog" keySequence="CTRL+2 R" command="_e6BcBXffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_nTHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.propertiesEditorScope" bindingContext="_e5_pJnffEemHMbmgLRRGog">
<bindings xmi:id="_e5_nTXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+C" command="_e6A4RnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nTnffEemHMbmgLRRGog" keySequence="CTRL+7" command="_e6A4RnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nT3ffEemHMbmgLRRGog" keySequence="CTRL+/" command="_e6A4RnffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_nUHffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.XtextEditorScope" bindingContext="_e5_pHHffEemHMbmgLRRGog">
<bindings xmi:id="_e5_nUXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+C" command="_e6BcrXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nUnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_e6A3KHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nU3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_DOWN" command="_e6A2yHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nVHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_UP" command="_e6A2BnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nVXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F" command="_e6A3XXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nVnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+G" command="_e6A2nXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nV3ffEemHMbmgLRRGog" keySequence="ALT+CTRL+H" command="_e6A4OXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nWHffEemHMbmgLRRGog" keySequence="CTRL+7" command="_e6BcrXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nWXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+P" command="_e6Bc03ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nWnffEemHMbmgLRRGog" keySequence="F4" command="_e6Bc-XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nW3ffEemHMbmgLRRGog" keySequence="CTRL+T" command="_e6A4UXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nXHffEemHMbmgLRRGog" keySequence="F3" command="_e6A38HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nXXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+R" command="_e6BcE3ffEemHMbmgLRRGog">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_e5_nXnffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6BcrHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nX3ffEemHMbmgLRRGog" keySequence="CTRL+/" command="_e6BcrXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nYHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+O" command="_e6BcmHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nYXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+L" command="_e6A4AHffEemHMbmgLRRGog">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_e5_nYnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_LEFT" command="_e6A2BHffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_nY3ffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.editors.template.editor" bindingContext="_e5_pHnffEemHMbmgLRRGog">
<bindings xmi:id="_e5_nZHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+C" command="_e6Bc_XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nZXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+F" command="_e6BcL3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nZnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+G" command="_e6A2TXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nZ3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+P" command="_e6BcVXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_naHffEemHMbmgLRRGog" keySequence="F3" command="_e6BcdnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_naXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+R" command="_e6A3A3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nanffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Y" command="_e6A3MnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_na3ffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6A3aHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nbHffEemHMbmgLRRGog" keySequence="CTRL+/" command="_e6Bc_XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nbXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+J" command="_e6A26XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nbnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+T" command="_e6BcCnffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_nb3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.scriptEditorScope" bindingContext="_e5_pInffEemHMbmgLRRGog">
<bindings xmi:id="_e5_ncHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+C" command="_e6A2_XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ncXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+ARROW_UP" command="_e6Bc8nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ncnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F" command="_e6Bc1HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nc3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+G" command="_e6A3g3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ndHffEemHMbmgLRRGog" keySequence="ALT+CTRL+H" command="_e6A2ynffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ndXffEemHMbmgLRRGog" keySequence="CTRL+7" command="_e6A2_XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ndnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+P" command="_e6A3W3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nd3ffEemHMbmgLRRGog" keySequence="F4" command="_e6A16HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_neHffEemHMbmgLRRGog" keySequence="CTRL+T" command="_e6BcR3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_neXffEemHMbmgLRRGog" keySequence="F3" command="_e6BcWnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nenffEemHMbmgLRRGog" keySequence="ALT+SHIFT+R" command="_e6A36HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ne3ffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6A4l3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nfHffEemHMbmgLRRGog" keySequence="CTRL+/" command="_e6A2_XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nfXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+J" command="_e6Bc8XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nfnffEemHMbmgLRRGog" keySequence="CTRL+I" command="_e6A2r3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nf3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+T" command="_e6A5IXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ngHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_e6A25HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ngXffEemHMbmgLRRGog" keySequence="ESC CTRL+F" command="_e6Bc1HffEemHMbmgLRRGog">
<tags>platform:gtk</tags>
</bindings>
</bindingTables>
<bindingTables xmi:id="_e5_ngnffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.phpEditorScope" bindingContext="_e5_pDHffEemHMbmgLRRGog">
<bindings xmi:id="_e5_ng3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+C" command="_e6BcvHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nhHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_e6A4OnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nhXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_DOWN" command="_e6A4XXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nhnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_UP" command="_e6BcFXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nh3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F" command="_e6BdE3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_niHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+G" command="_e6A3g3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_niXffEemHMbmgLRRGog" keySequence="ALT+CTRL+H" command="_e6BcDHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ninffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+H" command="_e6Bcz3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ni3ffEemHMbmgLRRGog" keySequence="ALT+CTRL+F" command="_e6BdE3ffEemHMbmgLRRGog">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_e5_njHffEemHMbmgLRRGog" keySequence="SHIFT+F2" command="_e6A4wnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_njXffEemHMbmgLRRGog" keySequence="CTRL+7" command="_e6BcvHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_njnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+P" command="_e6A4TXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nj3ffEemHMbmgLRRGog" keySequence="F4" command="_e6A36XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nkHffEemHMbmgLRRGog" keySequence="CTRL+T" command="_e6BcR3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nkXffEemHMbmgLRRGog" keySequence="F3" command="_e6A2WXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nknffEemHMbmgLRRGog" keySequence="ALT+SHIFT+V" command="_e6A5GXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nk3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+T" command="_e6A5EXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nlHffEemHMbmgLRRGog" keySequence="ALT+CTRL+S" command="_e6A3ZXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nlXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+R" command="_e6A36HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nlnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+M" command="_e6A3w3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nl3ffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6A4l3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nmHffEemHMbmgLRRGog" keySequence="ALT+CTRL+T" command="_e6A3hHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nmXffEemHMbmgLRRGog" keySequence="F2" command="_e6A4VHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nmnffEemHMbmgLRRGog" keySequence="CTRL+." command="_e6A4gXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nm3ffEemHMbmgLRRGog" keySequence="CTRL+N" command="_e6A2FnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nnHffEemHMbmgLRRGog" keySequence="CTRL+/" command="_e6BcvHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nnXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+M" command="_e6A4qHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nnnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+N" command="_e6Bc53ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nn3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+I" command="_e6A2LHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_noHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+J" command="_e6A3p3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_noXffEemHMbmgLRRGog" keySequence="CTRL+I" command="_e6BcbHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nonffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+O" command="_e6A3unffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_no3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+L" command="_e6BcEHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_npHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+O" command="_e6BcXHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_npXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_LEFT" command="_e6A2uXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_npnffEemHMbmgLRRGog" keySequence="CTRL+2 L" command="_e6A3d3ffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_np3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" bindingContext="_e5_pBnffEemHMbmgLRRGog">
<bindings xmi:id="_e5_nqHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+C" command="_e6A4dnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nqXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_e6A42HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nqnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+ARROW_UP" command="_e6BdRHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nq3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_DOWN" command="_e6A5KXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nrHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_UP" command="_e6A2GnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nrXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+E" command="_e6A4G3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nrnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F" command="_e6A2SXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nr3ffEemHMbmgLRRGog" keySequence="CTRL+7" command="_e6A4dnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nsHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+P" command="_e6A4sXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nsXffEemHMbmgLRRGog" keySequence="CTRL+T" command="_e6A4k3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nsnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+U" command="_e6A3P3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ns3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+T" command="_e6A333ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ntHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+/" command="_e6A33HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ntXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+M" command="_e6A2MnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ntnffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6A17nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nt3ffEemHMbmgLRRGog" keySequence="CTRL+F3" command="_e6A4MnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nuHffEemHMbmgLRRGog" keySequence="CTRL+/" command="_e6A4dnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nuXffEemHMbmgLRRGog" keySequence="CTRL+I" command="_e6A3qHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nunffEemHMbmgLRRGog" keySequence="ALT+SHIFT+O" command="_e6A3gXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nu3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+\" command="_e6A2c3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nvHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_LEFT" command="_e6BcwHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nvXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_e6A2oXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nvnffEemHMbmgLRRGog" keySequence="CTRL+2 L" command="_e6Bc-nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nv3ffEemHMbmgLRRGog" keySequence="ESC CTRL+C" command="_e6A4dnffEemHMbmgLRRGog">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_e5_nwHffEemHMbmgLRRGog" keySequence="ESC CTRL+F" command="_e6A2SXffEemHMbmgLRRGog">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_e5_nwXffEemHMbmgLRRGog" keySequence="CTRL+2 F" command="_e6A3inffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nwnffEemHMbmgLRRGog" keySequence="CTRL+2 R" command="_e6A293ffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_nw3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" bindingContext="_e5_pCnffEemHMbmgLRRGog">
<bindings xmi:id="_e5_nxHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+C" command="_e6BcvHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nxXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_e6A4nHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nxnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+ARROW_UP" command="_e6A2sXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nx3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+A" command="_e6BdPXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nyHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_DOWN" command="_e6A5DnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nyXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_UP" command="_e6A483ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nynffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F" command="_e6BdE3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ny3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+P" command="_e6A4U3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nzHffEemHMbmgLRRGog" keySequence="F3" command="_e6A4UHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nzXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+/" command="_e6A4QnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nznffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6A4ZHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_nz3ffEemHMbmgLRRGog" keySequence="CTRL+I" command="_e6BcbHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n0HffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+\" command="_e6A4zHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n0XffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+>" command="_e6BcQ3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n0nffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_LEFT" command="_e6A2K3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n03ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_e6A33XffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_n1HffEemHMbmgLRRGog" elementId="org.eclipse.ui.textEditorScope" bindingContext="_e5_pBXffEemHMbmgLRRGog">
<bindings xmi:id="_e5_n1XffEemHMbmgLRRGog" keySequence="CTRL+ARROW_DOWN" command="_e6BdPHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n1nffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_e6A3pnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n13ffEemHMbmgLRRGog" keySequence="CTRL+ARROW_UP" command="_e6A2hXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n2HffEemHMbmgLRRGog" keySequence="ALT+CTRL+ARROW_UP" command="_e6Bc9nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n2XffEemHMbmgLRRGog" keySequence="ALT+ARROW_DOWN" command="_e6A493ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n2nffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+DEL" command="_e6BcKnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n23ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+A" command="_e6A4UnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n3HffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+K" command="_e6A2fXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n3XffEemHMbmgLRRGog" keySequence="CTRL+ARROW_LEFT" command="_e6A4JnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n3nffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_e6A2qHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n33ffEemHMbmgLRRGog" keySequence="SHIFT+HOME" command="_e6A3f3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n4HffEemHMbmgLRRGog" keySequence="SHIFT+END" command="_e6A3o3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n4XffEemHMbmgLRRGog" keySequence="CTRL+HOME" command="_e6A2CnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n4nffEemHMbmgLRRGog" keySequence="ALT+CTRL+J" command="_e6A22HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n43ffEemHMbmgLRRGog" keySequence="CTRL+END" command="_e6A4_HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n5HffEemHMbmgLRRGog" keySequence="CTRL+BS" command="_e6A1wXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n5XffEemHMbmgLRRGog" keySequence="CTRL+D" command="_e6A2VHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n5nffEemHMbmgLRRGog" keySequence="CTRL+ARROW_RIGHT" command="_e6A2wnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n53ffEemHMbmgLRRGog" keySequence="INSERT" command="_e6A4e3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n6HffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+Y" command="_e6A3kXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n6XffEemHMbmgLRRGog" keySequence="CTRL+L" command="_e6BcPnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n6nffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+Q" command="_e6A2xnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n63ffEemHMbmgLRRGog" keySequence="CTRL+-" command="_e6A3lHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n7HffEemHMbmgLRRGog" keySequence="CTRL+NUMPAD_SUBTRACT" command="_e6BccXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n7XffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+X" command="_e6A4NnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n7nffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_e6A4fnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n73ffEemHMbmgLRRGog" keySequence="END" command="_e6Bcj3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n8HffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Y" command="_e6A1uXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n8XffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+CR" command="_e6BccnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n8nffEemHMbmgLRRGog" keySequence="CTRL+NUMPAD_DIVIDE" command="_e6A2jXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n83ffEemHMbmgLRRGog" keySequence="F2" command="_e6A283ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n9HffEemHMbmgLRRGog" keySequence="HOME" command="_e6BcwXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n9XffEemHMbmgLRRGog" keySequence="ALT+/" command="_e6BcxnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n9nffEemHMbmgLRRGog" keySequence="CTRL+F10" command="_e6BcbXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n93ffEemHMbmgLRRGog" keySequence="CTRL+J" command="_e6A2QHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n-HffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+INSERT" command="_e6A2onffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n-XffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_e6A5H3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n-nffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+J" command="_e6A2s3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n-3ffEemHMbmgLRRGog" keySequence="CTRL+K" command="_e6A45XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n_HffEemHMbmgLRRGog" keySequence="SHIFT+CR" command="_e6Bcv3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n_XffEemHMbmgLRRGog" keySequence="CTRL+NUMPAD_ADD" command="_e6Bc5HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n_nffEemHMbmgLRRGog" keySequence="CTRL+NUMPAD_MULTIPLY" command="_e6A5E3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_n_3ffEemHMbmgLRRGog" keySequence="CTRL++" command="_e6A4vnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oAHffEemHMbmgLRRGog" keySequence="ALT+ARROW_UP" command="_e6BdJXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oAXffEemHMbmgLRRGog" keySequence="CTRL+DEL" command="_e6A3M3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oAnffEemHMbmgLRRGog" keySequence="CTRL+=" command="_e6A4vnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oA3ffEemHMbmgLRRGog" keySequence="ALT+CTRL+ARROW_DOWN" command="_e6A3ynffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oBHffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.embeddedTextEditorScope" bindingContext="_e5_pQHffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oBXffEemHMbmgLRRGog" keySequence="CTRL+ARROW_DOWN" command="_e6BdPHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oBnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_e6A3pnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oB3ffEemHMbmgLRRGog" keySequence="CTRL+ARROW_UP" command="_e6A2hXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oCHffEemHMbmgLRRGog" keySequence="ALT+CTRL+ARROW_UP" command="_e6Bc9nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oCXffEemHMbmgLRRGog" keySequence="ALT+ARROW_DOWN" command="_e6A493ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oCnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+DEL" command="_e6BcKnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oC3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+A" command="_e6A4UnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oDHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+K" command="_e6A2fXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oDXffEemHMbmgLRRGog" keySequence="CTRL+ARROW_LEFT" command="_e6A4JnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oDnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_e6A2qHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oD3ffEemHMbmgLRRGog" keySequence="SHIFT+HOME" command="_e6A3f3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oEHffEemHMbmgLRRGog" keySequence="SHIFT+END" command="_e6A3o3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oEXffEemHMbmgLRRGog" keySequence="CTRL+HOME" command="_e6A2CnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oEnffEemHMbmgLRRGog" keySequence="ALT+CTRL+J" command="_e6A22HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oE3ffEemHMbmgLRRGog" keySequence="CTRL+END" command="_e6A4_HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oFHffEemHMbmgLRRGog" keySequence="CTRL+BS" command="_e6A1wXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oFXffEemHMbmgLRRGog" keySequence="CTRL+D" command="_e6A2VHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oFnffEemHMbmgLRRGog" keySequence="CTRL+ARROW_RIGHT" command="_e6A2wnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oF3ffEemHMbmgLRRGog" keySequence="INSERT" command="_e6A4e3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oGHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+Y" command="_e6A3kXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oGXffEemHMbmgLRRGog" keySequence="CTRL+L" command="_e6BcPnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oGnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+X" command="_e6A4NnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oG3ffEemHMbmgLRRGog" keySequence="END" command="_e6Bcj3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oHHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+CR" command="_e6BccnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oHXffEemHMbmgLRRGog" keySequence="F2" command="_e6A283ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oHnffEemHMbmgLRRGog" keySequence="HOME" command="_e6BcwXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oH3ffEemHMbmgLRRGog" keySequence="ALT+/" command="_e6BcxnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oIHffEemHMbmgLRRGog" keySequence="CTRL+F10" command="_e6BcbXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oIXffEemHMbmgLRRGog" keySequence="CTRL+J" command="_e6A2QHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oInffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+INSERT" command="_e6A2onffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oI3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+J" command="_e6A2s3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oJHffEemHMbmgLRRGog" keySequence="CTRL+K" command="_e6A45XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oJXffEemHMbmgLRRGog" keySequence="SHIFT+CR" command="_e6Bcv3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oJnffEemHMbmgLRRGog" keySequence="ALT+ARROW_UP" command="_e6BdJXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oJ3ffEemHMbmgLRRGog" keySequence="CTRL+DEL" command="_e6A3M3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oKHffEemHMbmgLRRGog" keySequence="ALT+CTRL+ARROW_DOWN" command="_e6A3ynffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oKXffEemHMbmgLRRGog" elementId="org.eclipse.ui.serverViewScope" bindingContext="_e5_pL3ffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oKnffEemHMbmgLRRGog" keySequence="ALT+CTRL+D" command="_e6A47HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oK3ffEemHMbmgLRRGog" keySequence="ALT+CTRL+R" command="_e6BdAHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oLHffEemHMbmgLRRGog" keySequence="ALT+CTRL+S" command="_e6A20nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oLXffEemHMbmgLRRGog" keySequence="ALT+CTRL+P" command="_e6A5BXffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oLnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" bindingContext="_e5_pQ3ffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oL3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+B" command="_e6BdKXffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oMHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" bindingContext="_e5_pPHffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oMXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_DOWN" command="_e6A3oHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oMnffEemHMbmgLRRGog" keySequence="ALT+ARROW_DOWN" command="_e6A3LHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oM3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+ARROW_UP" command="_e6BcC3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oNHffEemHMbmgLRRGog" keySequence="SHIFT+INSERT" command="_e6A2cHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oNXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+I" command="_e6A3lXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oNnffEemHMbmgLRRGog" keySequence="INSERT" command="_e6A3jXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oN3ffEemHMbmgLRRGog" keySequence="F4" command="_e6A2NnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oOHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+U" command="_e6A5DHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oOXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+R" command="_e6A3pHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oOnffEemHMbmgLRRGog" keySequence="CTRL+CR" command="_e6A3JHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oO3ffEemHMbmgLRRGog" keySequence="ALT+ARROW_UP" command="_e6A413ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oPHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+C" command="_e6A4FHffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oPXffEemHMbmgLRRGog" elementId="org.eclipse.gmf.runtime.diagram.ui.diagramContext" bindingContext="_e5_pLHffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oPnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+D" command="_e6Bb-3ffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oP3ffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.diagramContext" bindingContext="_e5_pLXffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oQHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+D" command="_e6Bcr3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oQXffEemHMbmgLRRGog" keySequence="CTRL+&" command="_e6A3YXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oQnffEemHMbmgLRRGog" keySequence="CTRL+H" command="_e6A2f3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oQ3ffEemHMbmgLRRGog" keySequence="F5" command="_e6A3YnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oRHffEemHMbmgLRRGog" keySequence="CTRL+L" command="_e6A3m3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oRXffEemHMbmgLRRGog" keySequence="ESC" command="_e6A2SHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oRnffEemHMbmgLRRGog" keySequence="CTRL+R" command="_e6BcOHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oR3ffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6BdCHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oSHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+L" command="_e6BcInffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oSXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+-" command="_e6A1zHffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oSnffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ui.interpreter.interpreterview" bindingContext="_e5_pP3ffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oS3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+D" command="_e6BdLXffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oTHffEemHMbmgLRRGog" elementId="org.eclipse.dltk.debug.ui.debugging" bindingContext="_e5_pNHffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oTXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+D" command="_e6BcY3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oTnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+I" command="_e6A3tXffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oT3ffEemHMbmgLRRGog" elementId="org.eclipse.ant.ui.AntEditorScope" bindingContext="_e5_pHXffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oUHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F" command="_e6BcvnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oUXffEemHMbmgLRRGog" keySequence="SHIFT+F2" command="_e6A4aXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oUnffEemHMbmgLRRGog" keySequence="F3" command="_e6A113ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oU3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+R" command="_e6A2HnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oVHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+O" command="_e6A1znffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oVXffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.pdeEditorContext" bindingContext="_e5_pH3ffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oVnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F" command="_e6A2THffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oV3ffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6A2aXffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oWHffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.context.views" bindingContext="_e5_pA3ffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oWXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+F" command="_e6BdE3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oWnffEemHMbmgLRRGog" keySequence="ALT+CTRL+H" command="_e6BcDHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oW3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+H" command="_e6Bcz3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oXHffEemHMbmgLRRGog" keySequence="F4" command="_e6A36XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oXXffEemHMbmgLRRGog" keySequence="F3" command="_e6A2WXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oXnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+V" command="_e6A5GXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oX3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+T" command="_e6A5EXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oYHffEemHMbmgLRRGog" keySequence="ALT+CTRL+S" command="_e6A3ZXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oYXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+R" command="_e6A36HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oYnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+M" command="_e6A3w3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oY3ffEemHMbmgLRRGog" keySequence="ALT+CTRL+T" command="_e6A3hHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oZHffEemHMbmgLRRGog" keySequence="CTRL+N" command="_e6A2FnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oZXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+M" command="_e6A4qHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oZnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+T" command="_e6A5IXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oZ3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+L" command="_e6BcEHffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oaHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_e5_pMXffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oaXffEemHMbmgLRRGog" keySequence="CTRL+G" command="_e6BcGXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oanffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+." command="_e6BcF3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oa3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+," command="_e6BcfXffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_obHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" bindingContext="_e5_pB3ffEemHMbmgLRRGog">
<bindings xmi:id="_e5_obXffEemHMbmgLRRGog" keySequence="CTRL+G" command="_e6A453ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_obnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+G" command="_e6A4WHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ob3ffEemHMbmgLRRGog" keySequence="ALT+CTRL+H" command="_e6BcDXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ocHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+I" command="_e6A4ZXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ocXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+H" command="_e6BdP3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ocnffEemHMbmgLRRGog" keySequence="SHIFT+F2" command="_e6BcM3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oc3ffEemHMbmgLRRGog" keySequence="F4" command="_e6A3znffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_odHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Z" command="_e6A3tHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_odXffEemHMbmgLRRGog" keySequence="F3" command="_e6A5BHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_odnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+V" command="_e6A2xXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_od3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+S" command="_e6A4qXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oeHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+R" command="_e6A4tXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oeXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+M" command="_e6BcknffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oenffEemHMbmgLRRGog" keySequence="ALT+SHIFT+J" command="_e6A4knffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oe3ffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+O" command="_e6A2VXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ofHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+U" command="_e6A2wXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ofXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+T" command="_e6A2fHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ofnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+L" command="_e6A33nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_of3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+C" command="_e6A3B3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ogHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q P" command="_e6A4wHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ogXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q T" command="_e6A4jnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ognffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q J" command="_e6Bcq3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_og3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+Q D" command="_e6A4-HffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_ohHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.editors.task" bindingContext="_e5_pIXffEemHMbmgLRRGog">
<bindings xmi:id="_e5_ohXffEemHMbmgLRRGog" keySequence="ALT+SHIFT+I" command="_e6A3lXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ohnffEemHMbmgLRRGog" keySequence="ALT+SHIFT+U" command="_e6A5DHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oh3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+S" command="_e6A3S3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oiHffEemHMbmgLRRGog" keySequence="ALT+SHIFT+R" command="_e6A3pHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oiXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+M" command="_e6A17XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oinffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6Bc8HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_oi3ffEemHMbmgLRRGog" keySequence="ALT+SHIFT+C" command="_e6A4FHffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_ojHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_e5_pPXffEemHMbmgLRRGog">
<bindings xmi:id="_e5_ojXffEemHMbmgLRRGog" keySequence="CTRL+C" command="_e6A3AXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ojnffEemHMbmgLRRGog" keySequence="CTRL+V" command="_e6A4NHffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oj3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_e5_pOXffEemHMbmgLRRGog">
<bindings xmi:id="_e5_okHffEemHMbmgLRRGog" keySequence="CTRL+C" command="_e6A2b3ffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_okXffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.console" bindingContext="_e5_pK3ffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oknffEemHMbmgLRRGog" keySequence="CTRL+D" command="_e6Bc83ffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_ok3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.debugging" bindingContext="_e5_pMHffEemHMbmgLRRGog">
<bindings xmi:id="_e5_olHffEemHMbmgLRRGog" keySequence="F5" command="_e6A2J3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_olXffEemHMbmgLRRGog" keySequence="CTRL+F2" command="_e6BcLnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_olnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+3" command="_e6A2InffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ol3ffEemHMbmgLRRGog" keySequence="CTRL+R" command="_e6A4MXffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_omHffEemHMbmgLRRGog" keySequence="F7" command="_e6BdA3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_omXffEemHMbmgLRRGog" keySequence="F8" command="_e6A4dHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_omnffEemHMbmgLRRGog" keySequence="F6" command="_e6A3qnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_om3ffEemHMbmgLRRGog" keySequence="CTRL+F5" command="_e6BczHffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_onHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.table.ui.EditorID.tableContext" bindingContext="_e5_pOnffEemHMbmgLRRGog">
<bindings xmi:id="_e5_onXffEemHMbmgLRRGog" keySequence="F5" command="_e6A2vHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_onnffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6A2lHffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_on3ffEemHMbmgLRRGog" elementId="org.eclipse.sirius.tree.ui.EditorID.treeContext" bindingContext="_e5_pN3ffEemHMbmgLRRGog">
<bindings xmi:id="_e5_ooHffEemHMbmgLRRGog" keySequence="F5" command="_e6BdLnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ooXffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6A4lHffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oonffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_e5_pKHffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oo3ffEemHMbmgLRRGog" keySequence="ALT+CTRL+M" command="_e6A3t3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_opHffEemHMbmgLRRGog" keySequence="CTRL+W" command="_e6A4h3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_opXffEemHMbmgLRRGog" keySequence="CTRL+T" command="_e6A2-XffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_opnffEemHMbmgLRRGog" keySequence="ALT+CTRL+N" command="_e6Bc6HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_op3ffEemHMbmgLRRGog" keySequence="CTRL+N" command="_e6A4xHffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oqHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" bindingContext="_e5_pI3ffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oqXffEemHMbmgLRRGog" keySequence="F1" command="_e6A10nffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_oqnffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_e5_pBHffEemHMbmgLRRGog">
<bindings xmi:id="_e5_oq3ffEemHMbmgLRRGog" keySequence="ALT+CR" command="_e6A4IHffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_orHffEemHMbmgLRRGog" keySequence="CTRL+CR" command="_e6A2N3ffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_orXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.classFileEditorScope" bindingContext="_e5_pCHffEemHMbmgLRRGog">
<bindings xmi:id="_e5_ornffEemHMbmgLRRGog" keySequence="CTRL+1" command="_e6BdDXffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_or3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" bindingContext="_e5_pJHffEemHMbmgLRRGog">
<bindings xmi:id="_e5_osHffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6A1_nffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_osXffEemHMbmgLRRGog" elementId="org.eclipse.sirius.editor.siriusEditorContext" bindingContext="_e5_pKnffEemHMbmgLRRGog">
<bindings xmi:id="_e5_osnffEemHMbmgLRRGog" keySequence="CTRL+O" command="_e6A20XffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_os3ffEemHMbmgLRRGog" elementId="org.eclipse.emfforms.editor.context" bindingContext="_e5_pOHffEemHMbmgLRRGog">
<bindings xmi:id="_e5_otHffEemHMbmgLRRGog" keySequence="CTRL+N" command="_e6Bc0nffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_otXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+N" command="_e6A2Q3ffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_otnffEemHMbmgLRRGog" keySequence="DEL" command="_e6A2R3ffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_ot3ffEemHMbmgLRRGog" elementId="org.eclipse.emfforms.editor.ecore.context" bindingContext="_e5_pO3ffEemHMbmgLRRGog">
<bindings xmi:id="_e5_ouHffEemHMbmgLRRGog" keySequence="CTRL+N" command="_e6BdKnffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ouXffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+N" command="_e6A13HffEemHMbmgLRRGog"/>
<bindings xmi:id="_e5_ounffEemHMbmgLRRGog" keySequence="DEL" command="_e6A1ynffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_ou3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.context" bindingContext="_e5_pQXffEemHMbmgLRRGog">
<bindings xmi:id="_e5_ovHffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+I" command="_e6Bc73ffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_ovXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" bindingContext="_e5_pJXffEemHMbmgLRRGog">
<bindings xmi:id="_e5_ovnffEemHMbmgLRRGog" keySequence="CTRL+SHIFT+O" command="_e6A1_nffEemHMbmgLRRGog"/>
</bindingTables>
<bindingTables xmi:id="_e5_ov3ffEemHMbmgLRRGog" bindingContext="_e5_pR3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_owHffEemHMbmgLRRGog" bindingContext="_e5_pSHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_owXffEemHMbmgLRRGog" bindingContext="_e5_pSXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_ownffEemHMbmgLRRGog" bindingContext="_e5_pSnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_ow3ffEemHMbmgLRRGog" bindingContext="_e5_pS3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_oxHffEemHMbmgLRRGog" bindingContext="_e5_pTHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_oxXffEemHMbmgLRRGog" bindingContext="_e5_pTXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_oxnffEemHMbmgLRRGog" bindingContext="_e5_pTnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_ox3ffEemHMbmgLRRGog" bindingContext="_e5_pT3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_oyHffEemHMbmgLRRGog" bindingContext="_e5_pUHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_oyXffEemHMbmgLRRGog" bindingContext="_e5_pUXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_oynffEemHMbmgLRRGog" bindingContext="_e5_pUnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_oy3ffEemHMbmgLRRGog" bindingContext="_e5_pU3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_ozHffEemHMbmgLRRGog" bindingContext="_e5_pVHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_ozXffEemHMbmgLRRGog" bindingContext="_e5_pVXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_oznffEemHMbmgLRRGog" bindingContext="_e5_pVnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_oz3ffEemHMbmgLRRGog" bindingContext="_e5_pV3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o0HffEemHMbmgLRRGog" bindingContext="_e5_pWHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o0XffEemHMbmgLRRGog" bindingContext="_e5_pWXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o0nffEemHMbmgLRRGog" bindingContext="_e5_pWnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o03ffEemHMbmgLRRGog" bindingContext="_e5_pW3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o1HffEemHMbmgLRRGog" bindingContext="_e5_pXHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o1XffEemHMbmgLRRGog" bindingContext="_e5_pXXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o1nffEemHMbmgLRRGog" bindingContext="_e5_pXnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o13ffEemHMbmgLRRGog" bindingContext="_e5_pX3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o2HffEemHMbmgLRRGog" bindingContext="_e5_pYHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o2XffEemHMbmgLRRGog" bindingContext="_e5_pYXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o2nffEemHMbmgLRRGog" bindingContext="_e5_pYnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o23ffEemHMbmgLRRGog" bindingContext="_e5_pY3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o3HffEemHMbmgLRRGog" bindingContext="_e5_pZHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o3XffEemHMbmgLRRGog" bindingContext="_e5_pZXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o3nffEemHMbmgLRRGog" bindingContext="_e5_pZnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o33ffEemHMbmgLRRGog" bindingContext="_e5_pZ3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o4HffEemHMbmgLRRGog" bindingContext="_e5_paHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o4XffEemHMbmgLRRGog" bindingContext="_e5_paXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o4nffEemHMbmgLRRGog" bindingContext="_e5_panffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o43ffEemHMbmgLRRGog" bindingContext="_e5_pa3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o5HffEemHMbmgLRRGog" bindingContext="_e5_pbHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o5XffEemHMbmgLRRGog" bindingContext="_e5_pbXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o5nffEemHMbmgLRRGog" bindingContext="_e5_pbnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o53ffEemHMbmgLRRGog" bindingContext="_e5_pb3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o6HffEemHMbmgLRRGog" bindingContext="_e5_pcHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o6XffEemHMbmgLRRGog" bindingContext="_e5_pcXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o6nffEemHMbmgLRRGog" bindingContext="_e5_pcnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o63ffEemHMbmgLRRGog" bindingContext="_e5_pc3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o7HffEemHMbmgLRRGog" bindingContext="_e5_pdHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o7XffEemHMbmgLRRGog" bindingContext="_e5_pdXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o7nffEemHMbmgLRRGog" bindingContext="_e5_pdnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o73ffEemHMbmgLRRGog" bindingContext="_e5_pd3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o8HffEemHMbmgLRRGog" bindingContext="_e5_peHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o8XffEemHMbmgLRRGog" bindingContext="_e5_peXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o8nffEemHMbmgLRRGog" bindingContext="_e5_penffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o83ffEemHMbmgLRRGog" bindingContext="_e5_pe3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o9HffEemHMbmgLRRGog" bindingContext="_e5_pfHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o9XffEemHMbmgLRRGog" bindingContext="_e5_pfXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o9nffEemHMbmgLRRGog" bindingContext="_e5_pfnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o93ffEemHMbmgLRRGog" bindingContext="_e5_pf3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o-HffEemHMbmgLRRGog" bindingContext="_e5_pgHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o-XffEemHMbmgLRRGog" bindingContext="_e5_pgXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o-nffEemHMbmgLRRGog" bindingContext="_e5_pgnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o-3ffEemHMbmgLRRGog" bindingContext="_e5_pg3ffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o_HffEemHMbmgLRRGog" bindingContext="_e5_phHffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o_XffEemHMbmgLRRGog" bindingContext="_e5_phXffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o_nffEemHMbmgLRRGog" bindingContext="_e5_phnffEemHMbmgLRRGog"/>
<bindingTables xmi:id="_e5_o_3ffEemHMbmgLRRGog" bindingContext="_e5_ph3ffEemHMbmgLRRGog"/>
<rootContext xmi:id="_e5_pAHffEemHMbmgLRRGog" elementId="org.eclipse.ui.contexts.dialogAndWindow" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs and Windows" description="Either a dialog or a window is open">
<children xmi:id="_e5_pAXffEemHMbmgLRRGog" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.platform" name="In Windows" description="A window is open">
<children xmi:id="_e5_pAnffEemHMbmgLRRGog" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.platform" name="%bindingcontext.name.bindingView"/>
<children xmi:id="_e5_pA3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.context.views" name="DLTK View" description="DLTK Views Context"/>
<children xmi:id="_e5_pBHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/>
<children xmi:id="_e5_pBXffEemHMbmgLRRGog" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context">
<children xmi:id="_e5_pBnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" name="Editing JavaScript Source" description="Editing JavaScript Source Context">
<children xmi:id="_e5_pB3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" name="JavaScript View" description="JavaScript View Context"/>
</children>
<children xmi:id="_e5_pCHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.classFileEditorScope" name="Browsing attached Java Source" description="Browsing attached Java Source Context"/>
<children xmi:id="_e5_pCXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.javaEditorScope" name="Editing Java Source" description="Editing Java Source Context"/>
<children xmi:id="_e5_pCnffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors">
<children xmi:id="_e5_pC3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.cleanup" name="XML Source Cleanup" description="XML Source Cleanup"/>
<children xmi:id="_e5_pDHffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.phpEditorScope" name="Editing PHP source" description="Editing PHP source context"/>
<children xmi:id="_e5_pDXffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.comments" name="Source Comments in Structured Text Editors" description="Source Comments in Structured Text Editors"/>
<children xmi:id="_e5_pDnffEemHMbmgLRRGog" elementId="org.eclipse.php.core.phpsource" name="Editing PHP source" description="Editing PHP source context"/>
<children xmi:id="_e5_pD3ffEemHMbmgLRRGog" elementId="org.eclipse.core.runtime.xml" name="Editing XML Source" description="Editing XML Source"/>
<children xmi:id="_e5_pEHffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.occurrences" name="XML Source Occurrences" description="XML Source Occurrences"/>
<children xmi:id="_e5_pEXffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.grammar" name="XML Source Grammar" description="XML Source Grammar"/>
<children xmi:id="_e5_pEnffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.comments" name="XML Source Comments" description="XML Source Comments"/>
<children xmi:id="_e5_pE3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.expand" name="XML Source Expand/Collapse" description="XML Source Expand/Collapse"/>
<children xmi:id="_e5_pFHffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.hideFormat" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"/>
<children xmi:id="_e5_pFXffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.selection" name="XML Source Selection" description="XML Source Selection"/>
<children xmi:id="_e5_pFnffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.navigation" name="XML Source Navigation" description="XML Source Navigation"/>
<children xmi:id="_e5_pF3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.json.core.jsonsource" name="%scope.structured.text.editor.json.name" description="%scope.structured.text.editor.json.description"/>
<children xmi:id="_e5_pGHffEemHMbmgLRRGog" elementId="org.eclipse.wst.css.core.csssource" name="Editing CSS Source" description="Editing CSS Source"/>
<children xmi:id="_e5_pGXffEemHMbmgLRRGog" elementId="org.eclipse.wst.html.core.htmlsource" name="Editing HTML Source" description="Editing HTML Source"/>
<children xmi:id="_e5_pGnffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.dependencies" name="XML Source Dependencies" description="XML Source Dependencies"/>
<children xmi:id="_e5_pG3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.html.occurrences" name="HTML Source Occurrences" description="HTML Source Occurrences"/>
</children>
<children xmi:id="_e5_pHHffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.XtextEditorScope" name="Editing Xtext Source" description="Editing Xtext Source Context"/>
<children xmi:id="_e5_pHXffEemHMbmgLRRGog" elementId="org.eclipse.ant.ui.AntEditorScope" name="Editing Ant Buildfiles" description="Editing Ant Buildfiles Context"/>
<children xmi:id="_e5_pHnffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.editors.template.editor" name="Acceleo Editor" description="Acceleo editing template context"/>
<children xmi:id="_e5_pH3ffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.pdeEditorContext" name="PDE editor" description="The context used by PDE editors"/>
<children xmi:id="_e5_pIHffEemHMbmgLRRGog" elementId="org.eclipse.wst.xsd.ui.text.editor.context" name="Editing XSD context"/>
<children xmi:id="_e5_pIXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.editors.task" name="In Tasks Editor"/>
<children xmi:id="_e5_pInffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.scriptEditorScope" name="Editing Script Source" description="Editing Script Source Context"/>
<children xmi:id="_e5_pI3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context">
<children xmi:id="_e5_pJHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context"/>
<children xmi:id="_e5_pJXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" name="Task Markup Editor Source Context"/>
</children>
<children xmi:id="_e5_pJnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.propertiesEditorScope" name="Editing Properties Files" description="Editing Properties Files Context"/>
</children>
<children xmi:id="_e5_pJ3ffEemHMbmgLRRGog" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/>
<children xmi:id="_e5_pKHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In memory view"/>
<children xmi:id="_e5_pKXffEemHMbmgLRRGog" elementId="org.eclipse.ocl.examples.xtext.console.xtext.embededxtextEditor.context" name="Embedded Essential OCL Xtext Editor"/>
<children xmi:id="_e5_pKnffEemHMbmgLRRGog" elementId="org.eclipse.sirius.editor.siriusEditorContext" name="SiriusEditor Context"/>
<children xmi:id="_e5_pK3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O console"/>
<children xmi:id="_e5_pLHffEemHMbmgLRRGog" elementId="org.eclipse.gmf.runtime.diagram.ui.diagramContext" name="Diagram Editing" description="GMF Diagram Editing">
<children xmi:id="_e5_pLXffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.diagramContext" name="In Sirius Diagram Editor" description="Sirius Diagram Editing"/>
</children>
<children xmi:id="_e5_pLnffEemHMbmgLRRGog" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/>
<children xmi:id="_e5_pL3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.serverViewScope" name="In Servers View" description="In Servers View"/>
<children xmi:id="_e5_pMHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging programs">
<children xmi:id="_e5_pMXffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/>
<children xmi:id="_e5_pMnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.debugging" name="Debugging Java" description="Debugging Java programs"/>
<children xmi:id="_e5_pM3ffEemHMbmgLRRGog" elementId="org.eclipse.php.debug.ui.xdebug" name="Debugging PHP" description="Debugging PHP"/>
<children xmi:id="_e5_pNHffEemHMbmgLRRGog" elementId="org.eclipse.dltk.debug.ui.debugging" name="Debugging Script" description="Context available during script debugging"/>
<children xmi:id="_e5_pNXffEemHMbmgLRRGog" elementId="org.eclipse.php.debug.ui.debugging" name="Debugging PHP" description="Debugging PHP"/>
<children xmi:id="_e5_pNnffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.debug" name="Debugging Acceleo" description="Debugging Acceleo"/>
</children>
<children xmi:id="_e5_pN3ffEemHMbmgLRRGog" elementId="org.eclipse.sirius.tree.ui.EditorID.treeContext" name="DTree Editing" description="Sirius DTree Editing"/>
<children xmi:id="_e5_pOHffEemHMbmgLRRGog" elementId="org.eclipse.emfforms.editor.context" name="Generic Editor"/>
<children xmi:id="_e5_pOXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/>
<children xmi:id="_e5_pOnffEemHMbmgLRRGog" elementId="org.eclipse.sirius.table.ui.EditorID.tableContext" name="DTable Editing" description="Sirius DTable Editing"/>
<children xmi:id="_e5_pO3ffEemHMbmgLRRGog" elementId="org.eclipse.emfforms.editor.ecore.context" name="Ecore Editor"/>
<children xmi:id="_e5_pPHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" name="In Tasks View"/>
<children xmi:id="_e5_pPXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View"/>
</children>
<children xmi:id="_e5_pPnffEemHMbmgLRRGog" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs" description="A dialog is open"/>
<children xmi:id="_e5_pP3ffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ui.interpreter.interpreterview" name="Acceleo Interpreter View"/>
<children xmi:id="_e5_pQHffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.embeddedTextEditorScope" name="Embedded Xtext Editor context" description="Embedded Xtext Editor is active"/>
<children xmi:id="_e5_pQXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.context" name="Chromium Debug" description="Debug Chromium JavaScript"/>
</rootContext>
<rootContext xmi:id="_e5_pQnffEemHMbmgLRRGog" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/>
<rootContext xmi:id="_e5_pQ3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" name="Editor Breadcrumb Navigation" description="Editor Breadcrumb Navigation Context"/>
<rootContext xmi:id="_e5_pRHffEemHMbmgLRRGog" elementId="org.eclipse.wst.xsd.ui.editor.sourceView" name="XSD Editor Source View" description="XSD Editor Source View"/>
<rootContext xmi:id="_e5_pRXffEemHMbmgLRRGog" elementId="org.eclipse.wst.xsd.ui.editor.designView" name="XSD Editor Design View" description="XSD Editor Design View"/>
<rootContext xmi:id="_e5_pRnffEemHMbmgLRRGog" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/>
<rootContext xmi:id="_e5_pR3ffEemHMbmgLRRGog" elementId="org.eclipse.ant.ui.actionSet.presentation" name="Auto::org.eclipse.ant.ui.actionSet.presentation"/>
<rootContext xmi:id="_e5_pSHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.breakpointActionSet" name="Auto::org.eclipse.debug.ui.breakpointActionSet"/>
<rootContext xmi:id="_e5_pSXffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.debugActionSet" name="Auto::org.eclipse.debug.ui.debugActionSet"/>
<rootContext xmi:id="_e5_pSnffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.launchActionSet" name="Auto::org.eclipse.debug.ui.launchActionSet"/>
<rootContext xmi:id="_e5_pS3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.profileActionSet" name="Auto::org.eclipse.debug.ui.profileActionSet"/>
<rootContext xmi:id="_e5_pTHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.gitaction" name="Auto::org.eclipse.egit.ui.gitaction"/>
<rootContext xmi:id="_e5_pTXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.navigation" name="Auto::org.eclipse.egit.ui.navigation"/>
<rootContext xmi:id="_e5_pTnffEemHMbmgLRRGog" elementId="org.eclipse.gmf.runtime.diagram.ui.DiagramActionSet" name="Auto::org.eclipse.gmf.runtime.diagram.ui.DiagramActionSet"/>
<rootContext xmi:id="_e5_pT3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.JDTDebugActionSet" name="Auto::org.eclipse.jdt.debug.ui.JDTDebugActionSet"/>
<rootContext xmi:id="_e5_pUHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.junit.JUnitActionSet" name="Auto::org.eclipse.jdt.junit.JUnitActionSet"/>
<rootContext xmi:id="_e5_pUXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.jdt.ui.text.java.actionSet.presentation"/>
<rootContext xmi:id="_e5_pUnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.jdt.ui.JavaElementCreationActionSet"/>
<rootContext xmi:id="_e5_pU3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.JavaActionSet" name="Auto::org.eclipse.jdt.ui.JavaActionSet"/>
<rootContext xmi:id="_e5_pVHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.A_OpenActionSet" name="Auto::org.eclipse.jdt.ui.A_OpenActionSet"/>
<rootContext xmi:id="_e5_pVXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.CodingActionSet" name="Auto::org.eclipse.jdt.ui.CodingActionSet"/>
<rootContext xmi:id="_e5_pVnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.SearchActionSet" name="Auto::org.eclipse.jdt.ui.SearchActionSet"/>
<rootContext xmi:id="_e5_pV3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.context.ui.actionSet" name="Auto::org.eclipse.mylyn.context.ui.actionSet"/>
<rootContext xmi:id="_e5_pWHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.java.actionSet" name="Auto::org.eclipse.mylyn.java.actionSet"/>
<rootContext xmi:id="_e5_pWXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.java.actionSet.browsing" name="Auto::org.eclipse.mylyn.java.actionSet.browsing"/>
<rootContext xmi:id="_e5_pWnffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.doc.actionSet" name="Auto::org.eclipse.mylyn.doc.actionSet"/>
<rootContext xmi:id="_e5_pW3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.navigation" name="Auto::org.eclipse.mylyn.tasks.ui.navigation"/>
<rootContext xmi:id="_e5_pXHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.navigation.additions" name="Auto::org.eclipse.mylyn.tasks.ui.navigation.additions"/>
<rootContext xmi:id="_e5_pXXffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.SearchActionSet" name="Auto::org.eclipse.pde.ui.SearchActionSet"/>
<rootContext xmi:id="_e5_pXnffEemHMbmgLRRGog" elementId="org.eclipse.ui.cheatsheets.actionSet" name="Auto::org.eclipse.ui.cheatsheets.actionSet"/>
<rootContext xmi:id="_e5_pX3ffEemHMbmgLRRGog" elementId="org.eclipse.search.searchActionSet" name="Auto::org.eclipse.search.searchActionSet"/>
<rootContext xmi:id="_e5_pYHffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.CVSActionSet" name="Auto::org.eclipse.team.cvs.ui.CVSActionSet"/>
<rootContext xmi:id="_e5_pYXffEemHMbmgLRRGog" elementId="org.eclipse.team.ui.actionSet" name="Auto::org.eclipse.team.ui.actionSet"/>
<rootContext xmi:id="_e5_pYnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.actionSet.annotationNavigation" name="Auto::org.eclipse.ui.edit.text.actionSet.annotationNavigation"/>
<rootContext xmi:id="_e5_pY3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.actionSet.navigation" name="Auto::org.eclipse.ui.edit.text.actionSet.navigation"/>
<rootContext xmi:id="_e5_pZHffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo" name="Auto::org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo"/>
<rootContext xmi:id="_e5_pZXffEemHMbmgLRRGog" elementId="org.eclipse.ui.externaltools.ExternalToolsSet" name="Auto::org.eclipse.ui.externaltools.ExternalToolsSet"/>
<rootContext xmi:id="_e5_pZnffEemHMbmgLRRGog" elementId="org.eclipse.ui.NavigateActionSet" name="Auto::org.eclipse.ui.NavigateActionSet"/>
<rootContext xmi:id="_e5_pZ3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.actionSet.keyBindings" name="Auto::org.eclipse.ui.actionSet.keyBindings"/>
<rootContext xmi:id="_e5_paHffEemHMbmgLRRGog" elementId="org.eclipse.ui.WorkingSetModificationActionSet" name="Auto::org.eclipse.ui.WorkingSetModificationActionSet"/>
<rootContext xmi:id="_e5_paXffEemHMbmgLRRGog" elementId="org.eclipse.ui.WorkingSetActionSet" name="Auto::org.eclipse.ui.WorkingSetActionSet"/>
<rootContext xmi:id="_e5_panffEemHMbmgLRRGog" elementId="org.eclipse.ui.actionSet.openFiles" name="Auto::org.eclipse.ui.actionSet.openFiles"/>
<rootContext xmi:id="_e5_pa3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.actionSet.presentation" name="Auto::org.eclipse.ui.edit.text.actionSet.presentation"/>
<rootContext xmi:id="_e5_pbHffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.editors.template.actionSet" name="Auto::org.eclipse.acceleo.ide.ui.editors.template.actionSet"/>
<rootContext xmi:id="_e5_pbXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.debug.ui.ScriptDebugActionSet" name="Auto::org.eclipse.dltk.debug.ui.ScriptDebugActionSet"/>
<rootContext xmi:id="_e5_pbnffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.dltk.actionSet" name="Auto::org.eclipse.mylyn.dltk.actionSet"/>
<rootContext xmi:id="_e5_pb3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.dltk.actionSet.browsing" name="Auto::org.eclipse.mylyn.dltk.actionSet.browsing"/>
<rootContext xmi:id="_e5_pcHffEemHMbmgLRRGog" elementId="org.eclipse.dltk.testing.testingActionSet" name="Auto::org.eclipse.dltk.testing.testingActionSet"/>
<rootContext xmi:id="_e5_pcXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.ScriptCodingActionSet" name="Auto::org.eclipse.dltk.ui.ScriptCodingActionSet"/>
<rootContext xmi:id="_e5_pcnffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.A_OpenActionSet" name="Auto::org.eclipse.dltk.ui.A_OpenActionSet"/>
<rootContext xmi:id="_e5_pc3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.text.actionSet.presentation" name="Auto::org.eclipse.dltk.ui.text.actionSet.presentation"/>
<rootContext xmi:id="_e5_pdHffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.SearchActionSet" name="Auto::org.eclipse.dltk.ui.SearchActionSet"/>
<rootContext xmi:id="_e5_pdXffEemHMbmgLRRGog" elementId="org.eclipse.php.debug.ui.actionSet" name="Auto::org.eclipse.php.debug.ui.actionSet"/>
<rootContext xmi:id="_e5_pdnffEemHMbmgLRRGog" elementId="org.eclipse.php.refactoring.ui.extractSet" name="Auto::org.eclipse.php.refactoring.ui.extractSet"/>
<rootContext xmi:id="_e5_pd3ffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.text.php.actionSet.presentation" name="Auto::org.eclipse.php.ui.text.php.actionSet.presentation"/>
<rootContext xmi:id="_e5_peHffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.PHPActionSet" name="Auto::org.eclipse.php.ui.PHPActionSet"/>
<rootContext xmi:id="_e5_peXffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.A_OpenActionSet" name="Auto::org.eclipse.php.ui.A_OpenActionSet"/>
<rootContext xmi:id="_e5_penffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.SearchActionSet" name="Auto::org.eclipse.php.ui.SearchActionSet"/>
<rootContext xmi:id="_e5_pe3ffEemHMbmgLRRGog" elementId="org.eclipse.pdt.ui.RefactoringActionSet" name="Auto::org.eclipse.pdt.ui.RefactoringActionSet"/>
<rootContext xmi:id="_e5_pfHffEemHMbmgLRRGog" elementId="org.eclipse.pdt.ui.SourceActionsSet" name="Auto::org.eclipse.pdt.ui.SourceActionsSet"/>
<rootContext xmi:id="_e5_pfXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation"/>
<rootContext xmi:id="_e5_pfnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet"/>
<rootContext xmi:id="_e5_pf3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.JavaActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaActionSet"/>
<rootContext xmi:id="_e5_pgHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.A_OpenActionSet" name="Auto::org.eclipse.wst.jsdt.ui.A_OpenActionSet"/>
<rootContext xmi:id="_e5_pgXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.CodingActionSet" name="Auto::org.eclipse.wst.jsdt.ui.CodingActionSet"/>
<rootContext xmi:id="_e5_pgnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.SearchActionSet" name="Auto::org.eclipse.wst.jsdt.ui.SearchActionSet"/>
<rootContext xmi:id="_e5_pg3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.server.ui.new.actionSet" name="Auto::org.eclipse.wst.server.ui.new.actionSet"/>
<rootContext xmi:id="_e5_phHffEemHMbmgLRRGog" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet" name="Auto::org.eclipse.wst.server.ui.internal.webbrowser.actionSet"/>
<rootContext xmi:id="_e5_phXffEemHMbmgLRRGog" elementId="org.eclipse.wst.web.ui.wizardsActionSet" name="Auto::org.eclipse.wst.web.ui.wizardsActionSet"/>
<rootContext xmi:id="_e5_phnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.actionSets" name="Auto::org.eclipse.wst.jsdt.chromium.debug.ui.actionSets"/>
<rootContext xmi:id="_e5_ph3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.junit.launchconfig.internal.org.eclipse.debug.ui.DebugPerspective" name="Auto::org.eclipse.jdt.junit.launchconfig.internal.org.eclipse.debug.ui.DebugPerspective"/>
<descriptors xmi:id="_e5_piHffEemHMbmgLRRGog" 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="_e5_piXffEemHMbmgLRRGog" elementId="org.eclipse.amalgam.explorer.contextual.ui.view.ExplorerContextualID" label="Contextual Explorer" iconURI="platform:/plugin/org.eclipse.amalgam.explorer.contextual.core.ui/icons/ctxexplorer_16x16.png" tooltip="" category="Amalgam" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.amalgam.explorer.contextual.view.AmalgamExplorerContextualView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.amalgam.explorer.contextual.ui"/>
<tags>View</tags>
<tags>categoryTag:Amalgam</tags>
</descriptors>
<descriptors xmi:id="_e5_pinffEemHMbmgLRRGog" elementId="org.eclipse.ant.ui.views.AntView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.png" tooltip="" category="Ant" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ant.internal.ui.views.AntView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ant.ui"/>
<tags>View</tags>
<tags>categoryTag:Ant</tags>
</descriptors>
<descriptors xmi:id="_e5_pi3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.DebugView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_view.png" tooltip="" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.launch.LaunchView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_e5_pjHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.BreakpointView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/breakpoint_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.breakpoints.BreakpointsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_e5_pjXffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.VariableView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/variable_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.variables.VariablesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_e5_pjnffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.ExpressionView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/watchlist_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.expression.ExpressionView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_e5_pj3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.RegisterView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/register_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.registers.RegistersView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_e5_pkHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.ModuleView" label="Modules" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/module_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.modules.ModulesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_e5_pkXffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.MemoryView" label="Memory" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/memory_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.memory.MemoryView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_e5_pknffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.gif" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.repository.RepositoriesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_e5_pk3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.StagingView" label="Git Staging" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/staging.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.staging.StagingView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_e5_plHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.InteractiveRebaseView" label="Git Interactive Rebase" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/rebase_interactive.gif" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.rebase.RebaseInteractiveView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_e5_plXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.CompareTreeView" label="Git Tree Compare" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/obj16/gitrepository.gif" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.dialogs.CompareTreeView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_e5_plnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.ReflogView" label="Git Reflog" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/reflog.gif" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.reflog.ReflogView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_e5_pl3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.explorer.ui.CDORepositoriesView" label="CDO Repositories" iconURI="platform:/plugin/org.eclipse.emf.cdo.ui.shared/icons/full/view16/locations.gif" tooltip="" category="CDO" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.cdo.explorer.ui.repositories.CDORepositoriesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.cdo.explorer.ui"/>
<tags>View</tags>
<tags>categoryTag:CDO</tags>
</descriptors>
<descriptors xmi:id="_e5_pmHffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.ui.CDOSessionsView" label="CDO Sessions" iconURI="platform:/plugin/org.eclipse.emf.cdo.ui.shared/icons/full/view16/cdo_sessions.gif" tooltip="" category="CDO" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.cdo.internal.ui.views.CDOSessionsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.cdo.ui"/>
<tags>View</tags>
<tags>categoryTag:CDO</tags>
</descriptors>
<descriptors xmi:id="_e5_pmXffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.ui.CDOWatchListView" label="CDO Watch List" iconURI="platform:/plugin/org.eclipse.emf.cdo.ui.shared/icons/full/view16/watch_list.gif" tooltip="" category="CDO" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.cdo.internal.ui.views.CDOWatchListView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.cdo.ui"/>
<tags>View</tags>
<tags>categoryTag:CDO</tags>
</descriptors>
<descriptors xmi:id="_e5_pmnffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.ui.CDORemoteSessionsView" label="CDO Collaboration" iconURI="platform:/plugin/org.eclipse.emf.cdo.ui.shared/icons/full/view16/cdo_remote_sessions.gif" tooltip="" category="CDO" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.cdo.internal.ui.views.CDORemoteSessionsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.cdo.ui"/>
<tags>View</tags>
<tags>categoryTag:CDO</tags>
</descriptors>
<descriptors xmi:id="_e5_pm3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.ui.CDOTimeMachineView" label="CDO Time Machine" iconURI="platform:/plugin/org.eclipse.emf.cdo.ui.shared/icons/full/view16/cdo_time_machine.gif" tooltip="" category="CDO" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.cdo.internal.ui.views.CDOTimeMachineView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.cdo.ui"/>
<tags>View</tags>
<tags>categoryTag:CDO</tags>
</descriptors>
<descriptors xmi:id="_e5_pnHffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.ui.admin.CDOAdminView" label="CDO Administration" iconURI="platform:/plugin/org.eclipse.emf.cdo.ui.admin/icons/full/view16/admin_view.gif" tooltip="" category="CDO" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.cdo.ui.internal.admin.CDOAdminView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.cdo.ui.admin"/>
<tags>View</tags>
<tags>categoryTag:CDO</tags>
</descriptors>
<descriptors xmi:id="_e5_pnXffEemHMbmgLRRGog" elementId="org.eclipse.emf.compare.ide.ui.logicalmodel.view" label="Logical Model View" iconURI="platform:/plugin/org.eclipse.emf.compare.ide.ui/icons/full/eobj16/emfcompare-icon.gif" tooltip="" category="EMF Compare" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.compare.ide.ui.internal.logical.view.LogicalModelView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.compare.ide.ui"/>
<tags>View</tags>
<tags>categoryTag:EMF Compare</tags>
</descriptors>
<descriptors xmi:id="_e5_pnnffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecoretools.internal.views.EClassHierarchyView" label="EClass Hierarchy" iconURI="platform:/plugin/org.eclipse.emf.ecoretools/icons/eview16/eclass_hi_nav.gif" tooltip="" category="Other" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.ecoretools.internal.views.EClassHierarchyView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.ecoretools"/>
<tags>View</tags>
<tags>categoryTag:Other</tags>
</descriptors>
<descriptors xmi:id="_e5_pn3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecoretools.internal.views.EReferencesView" label="EClass References" iconURI="platform:/plugin/org.eclipse.emf.ecoretools/icons/eview16/eref_nav.gif" tooltip="" category="Other" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.ecoretools.internal.views.EReferencesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.ecoretools"/>
<tags>View</tags>
<tags>categoryTag:Other</tags>
</descriptors>
<descriptors xmi:id="_e5_poHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.ModelExplorerView" label="Model Explorer" iconURI="platform:/plugin/org.eclipse.emf.ecp.ui.e3/icons/folder_brick.png" tooltip="" category="ECP Views" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.ecp.ui.views.ModelExplorerView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.ecp.ui.e3"/>
<tags>View</tags>
<tags>categoryTag:ECP Views</tags>
</descriptors>
<descriptors xmi:id="_e5_poXffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.ModelRepositoriesView" label="Model Repositories" iconURI="platform:/plugin/org.eclipse.emf.ecp.ui.e3/icons/repositories.gif" tooltip="" category="ECP Views" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.ecp.ui.views.ModelRepositoriesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.ecp.ui.e3"/>
<tags>View</tags>
<tags>categoryTag:ECP Views</tags>
</descriptors>
<descriptors xmi:id="_e5_ponffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.ECPProvidersView" label="ECP Providers" iconURI="platform:/plugin/org.eclipse.emf.ecp.ui.e3/icons/providers.gif" tooltip="" category="ECP Views" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.ecp.ui.views.ECPProvidersView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.ecp.ui.e3"/>
<tags>View</tags>
<tags>categoryTag:ECP Views</tags>
</descriptors>
<descriptors xmi:id="_e5_po3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.view.model.preview.e3.views.PreviewView" label="EMF Forms Preview" iconURI="platform:/plugin/org.eclipse.emf.ecp.view.model.preview.e3/icons/preview.png" tooltip="" category="EMF Forms" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.ecp.view.model.internal.preview.e3.views.PreviewView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.ecp.view.model.preview.e3"/>
<tags>View</tags>
<tags>categoryTag:EMF Forms</tags>
</descriptors>
<descriptors xmi:id="_e5_ppHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.views.historybrowserview.HistoryBrowserView" label="History Browser" iconURI="platform:/plugin/org.eclipse.emf.emfstore.client.ui/icons/historyview.png" tooltip="" category="EMFStore Views" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.emf.emfstore.internal.client.ui.views.historybrowserview.HistoryBrowserView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.emf.emfstore.client.ui"/>
<tags>View</tags>
<tags>categoryTag:EMFStore Views</tags>
</descriptors>
<descriptors xmi:id="_e5_ppXffEemHMbmgLRRGog" elementId="org.eclipse.gef.ui.palette_view" label="Palette" iconURI="platform:/plugin/org.eclipse.gef/icons/palette_view.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.gef.ui.views.palette.PaletteView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.gef"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_ppnffEemHMbmgLRRGog" elementId="org.eclipse.help.ui.HelpView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.gif" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.help.ui.internal.views.HelpView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.help.ui"/>
<tags>View</tags>
<tags>categoryTag:Help</tags>
</descriptors>
<descriptors xmi:id="_e5_pp3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.DisplayView" label="Display" iconURI="platform:/plugin/org.eclipse.jdt.debug.ui/icons/full/etool16/disp_sbook.gif" tooltip="" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.debug.ui.display.DisplayView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_e5_pqHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.junit.ResultView" label="JUnit" iconURI="platform:/plugin/org.eclipse.jdt.junit/icons/full/eview16/junit.gif" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.junit.ui.TestRunnerViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.junit"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_e5_pqXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.PackageExplorer" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_e5_pqnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.TypeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/class_hi.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_e5_pq3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.ProjectsView" label="Projects" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/projects.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.ProjectsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java Browsing</tags>
</descriptors>
<descriptors xmi:id="_e5_prHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.PackagesView" label="Packages" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/packages.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.PackagesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java Browsing</tags>
</descriptors>
<descriptors xmi:id="_e5_prXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.TypesView" label="Types" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/types.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.TypesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java Browsing</tags>
</descriptors>
<descriptors xmi:id="_e5_prnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.MembersView" label="Members" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/members.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.MembersView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java Browsing</tags>
</descriptors>
<descriptors xmi:id="_e5_pr3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/call_hierarchy.png" tooltip="" allowMultiple="true" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.callhierarchy.CallHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_e5_psHffEemHMbmgLRRGog" elementId="org.eclipse.ui.texteditor.TemplatesView" label="Templates" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/templates.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.texteditor.templates.TemplatesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_psXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.SourceView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_e5_psnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.JavadocView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.JavadocView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
<tags>View</tags>
<tags>categoryTag:Java</tags>
</descriptors>
<descriptors xmi:id="_e5_ps3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.commons.repositories.ui.navigator.Repositories" label="Team Repositories" iconURI="platform:/plugin/org.eclipse.mylyn.commons.repositories.ui/icons/eview16/repositories.gif" tooltip="" category="Mylyn" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.commons.repositories.ui.RepositoriesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.commons.repositories.ui"/>
<tags>View</tags>
<tags>categoryTag:Mylyn</tags>
</descriptors>
<descriptors xmi:id="_e5_ptHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" label="Task List" iconURI="platform:/plugin/org.eclipse.mylyn.tasks.ui/icons/eview16/task-list.gif" tooltip="" allowMultiple="true" category="Mylyn" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.tasks.ui.views.TaskListView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.tasks.ui"/>
<tags>View</tags>
<tags>categoryTag:Mylyn</tags>
</descriptors>
<descriptors xmi:id="_e5_ptXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.views.repositories" label="Task Repositories" iconURI="platform:/plugin/org.eclipse.mylyn.tasks.ui/icons/eview16/repositories.gif" tooltip="" category="Mylyn" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.tasks.ui.views.TaskRepositoriesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.tasks.ui"/>
<tags>View</tags>
<tags>categoryTag:Mylyn</tags>
</descriptors>
<descriptors xmi:id="_e5_ptnffEemHMbmgLRRGog" elementId="org.eclipse.net4j.debug.RemoteTraceView" label="Remote Traces" iconURI="platform:/plugin/org.eclipse.net4j.debug/icons/text.gif" tooltip="" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.net4j.internal.debug.views.RemoteTraceView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.net4j.debug"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_e5_pt3ffEemHMbmgLRRGog" elementId="org.eclipse.net4j.AcceptorsView" label="Acceptors" iconURI="platform:/plugin/org.eclipse.net4j.ui.shared/icons/full/view16/acceptors.gif" tooltip="" category="Net4j" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.net4j.internal.ui.views.AcceptorsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.net4j.ui"/>
<tags>View</tags>
<tags>categoryTag:Net4j</tags>
</descriptors>
<descriptors xmi:id="_e5_puHffEemHMbmgLRRGog" elementId="org.eclipse.net4j.ConnectorsView" label="Connectors" iconURI="platform:/plugin/org.eclipse.net4j.ui.shared/icons/full/view16/connectors.gif" tooltip="" category="Net4j" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.net4j.internal.ui.views.ConnectorsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.net4j.ui"/>
<tags>View</tags>
<tags>categoryTag:Net4j</tags>
</descriptors>
<descriptors xmi:id="_e5_puXffEemHMbmgLRRGog" elementId="org.eclipse.net4j.util.Net4jContainerView" label="Container" iconURI="platform:/plugin/org.eclipse.net4j.ui.shared/icons/full/view16/container.gif" tooltip="" category="Net4j Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.net4j.util.internal.ui.views.Net4jContainerView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.net4j.util.ui"/>
<tags>View</tags>
<tags>categoryTag:Net4j Debug</tags>
</descriptors>
<descriptors xmi:id="_e5_punffEemHMbmgLRRGog" elementId="org.eclipse.net4j.util.Net4jIntrospectorView" label="Introspector" iconURI="platform:/plugin/org.eclipse.net4j.ui.shared/icons/full/view16/javabean.gif" tooltip="" category="Net4j Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.net4j.util.internal.ui.views.Net4jIntrospectorView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.net4j.util.ui"/>
<tags>View</tags>
<tags>categoryTag:Net4j Debug</tags>
</descriptors>
<descriptors xmi:id="_e5_pu3ffEemHMbmgLRRGog" elementId="org.eclipse.oomph.p2.ui.RepositoryExplorer" label="Repository Explorer" iconURI="platform:/plugin/org.eclipse.oomph.p2.ui/icons/obj16/repository.gif" tooltip="" category="Oomph" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.oomph.p2.internal.ui.RepositoryExplorer"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.oomph.p2.ui"/>
<tags>View</tags>
<tags>categoryTag:Oomph</tags>
</descriptors>
<descriptors xmi:id="_e5_pvHffEemHMbmgLRRGog" elementId="org.eclipse.pde.api.tools.ui.views.apitooling.views.apitoolingview" label="API Tools" iconURI="platform:/plugin/org.eclipse.pde.api.tools.ui/icons/full/obj16/api_tools.gif" tooltip="" category="API Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.api.tools.ui.internal.views.APIToolingView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.api.tools.ui"/>
<tags>View</tags>
<tags>categoryTag:API Tools</tags>
</descriptors>
<descriptors xmi:id="_e5_pvXffEemHMbmgLRRGog" elementId="org.eclipse.pde.runtime.RegistryBrowser" label="Plug-in Registry" iconURI="platform:/plugin/org.eclipse.pde.runtime/icons/eview16/registry.gif" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.runtime.registry.RegistryBrowser"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.runtime"/>
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_e5_pvnffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.PluginsView" label="Plug-ins" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/eview16/plugin_depend.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.plugins.PluginsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_e5_pv3ffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.DependenciesView" label="Plug-in Dependencies" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/req_plugins_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.dependencies.DependenciesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_e5_pwHffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.TargetPlatformState" label="Target Platform State" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/target_profile_xml_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.target.TargetStateView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_e5_pwXffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.ImageBrowserView" label="Plug-in Image Browser" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/psearch_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.imagebrowser.ImageBrowserView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
<tags>View</tags>
<tags>categoryTag:Plug-in Development</tags>
</descriptors>
<descriptors xmi:id="_e5_pwnffEemHMbmgLRRGog" elementId="org.eclipse.search.SearchResultView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.search.internal.ui.SearchResultView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_pw3ffEemHMbmgLRRGog" elementId="org.eclipse.search.ui.views.SearchView" label="Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.search2.internal.ui.SearchView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_pxHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.common.ui.view.timeProfiler" label="Time Profiler View" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="Sirius Profiler" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.sirius.common.ui.tools.api.profiler.view.TimeProfilerView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.sirius.common.ui.ext"/>
<tags>View</tags>
<tags>categoryTag:Sirius Profiler</tags>
</descriptors>
<descriptors xmi:id="_e5_pxXffEemHMbmgLRRGog" elementId="org.eclipse.sirius.ui.tools.views.interpreterview" label="Model requests interpreter" iconURI="platform:/plugin/org.eclipse.sirius.ui.ext/icons/full/others/information.gif" tooltip="" category="Sirius" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.sirius.ui.tools.internal.views.interpreterview.DesignerInterpreterView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.sirius.ui.ext"/>
<tags>View</tags>
<tags>categoryTag:Sirius</tags>
</descriptors>
<descriptors xmi:id="_e5_pxnffEemHMbmgLRRGog" elementId="org.eclipse.sirius.ui.tools.views.model.explorer" label="Model Explorer" iconURI="platform:/plugin/org.eclipse.sirius.ui.ext/icons/full/others/ModelExplorer.gif" tooltip="" category="Sirius" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.sirius.ui.tools.internal.views.modelexplorer.ModelExplorerView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.sirius.ui.ext"/>
<tags>View</tags>
<tags>categoryTag:Sirius</tags>
</descriptors>
<descriptors xmi:id="_e5_px3ffEemHMbmgLRRGog" elementId="org.eclipse.team.ccvs.ui.RepositoriesView" label="CVS Repositories" iconURI="platform:/plugin/org.eclipse.team.cvs.ui/icons/full/eview16/repo_rep.gif" tooltip="" category="CVS" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.team.internal.ccvs.ui.repo.RepositoriesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.team.cvs.ui"/>
<tags>View</tags>
<tags>categoryTag:CVS</tags>
</descriptors>
<descriptors xmi:id="_e5_pyHffEemHMbmgLRRGog" elementId="org.eclipse.team.ccvs.ui.EditorsView" label="CVS Editors" iconURI="platform:/plugin/org.eclipse.team.cvs.ui/icons/full/eview16/rep_editors_view.gif" tooltip="" category="CVS" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.team.internal.ccvs.ui.EditorsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.team.cvs.ui"/>
<tags>View</tags>
<tags>categoryTag:CVS</tags>
</descriptors>
<descriptors xmi:id="_e5_pyXffEemHMbmgLRRGog" elementId="org.eclipse.team.sync.views.SynchronizeView" label="Synchronize" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/synch_synch.gif" tooltip="" allowMultiple="true" category="Team" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.team.internal.ui.synchronize.SynchronizeView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.team.ui"/>
<tags>View</tags>
<tags>categoryTag:Team</tags>
</descriptors>
<descriptors xmi:id="_e5_pynffEemHMbmgLRRGog" elementId="org.eclipse.team.ui.GenericHistoryView" label="History" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/history_view.gif" tooltip="" allowMultiple="true" category="Team" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.team.internal.ui.history.GenericHistoryView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.team.ui"/>
<tags>View</tags>
<tags>categoryTag:Team</tags>
</descriptors>
<descriptors xmi:id="_e5_py3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.internal.introview" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.ViewIntroAdapterPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_pzHffEemHMbmgLRRGog" elementId="org.eclipse.ui.browser.view" label="Internal Web Browser" iconURI="platform:/plugin/org.eclipse.ui.browser/icons/obj16/internal_browser.gif" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.browser.WebBrowserView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.browser"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_pzXffEemHMbmgLRRGog" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.gif" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.cheatsheets.views.CheatSheetView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.cheatsheets"/>
<tags>View</tags>
<tags>categoryTag:Help</tags>
</descriptors>
<descriptors xmi:id="_e5_pznffEemHMbmgLRRGog" elementId="org.eclipse.ui.console.ConsoleView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console/icons/full/cview16/console_view.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.console.ConsoleView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.console"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_pz3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ProgressView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/pview.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.progress.ProgressView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_p0HffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ResourceNavigator" label="Navigator" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/filenav_nav.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.navigator.ResourceNavigator"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_p0XffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.BookmarkView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/bkmrk_nav.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.BookmarksView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_p0nffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.TaskList" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/tasks_tsk.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.TasksView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_p03ffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ProblemView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.ProblemsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_p1HffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.AllMarkersView" label="Markers" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.AllMarkersView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_p1XffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigator.ProjectExplorer" label="Project Explorer" iconURI="platform:/plugin/org.eclipse.ui.navigator.resources/icons/full/eview16/resource_persp.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.navigator.resources.ProjectExplorer"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.navigator.resources"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_p1nffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.PropertySheet" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.properties.PropertySheet"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_p13ffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.ContentOutline" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/outline_co.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.contentoutline.ContentOutline"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_p2HffEemHMbmgLRRGog" elementId="org.eclipse.pde.runtime.LogView" label="Error Log" iconURI="platform:/plugin/org.eclipse.ui.views.log/icons/eview16/error_log.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.log.LogView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views.log"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_p2XffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.views.proposals.ProposalsBrowser" label="Generation Patterns" iconURI="platform:/plugin/org.eclipse.acceleo.ide.ui/icons/ProposalsBrowser.gif" tooltip="" category="Acceleo Model to Text" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.acceleo.internal.ide.ui.views.proposals.ProposalsBrowser"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.acceleo.ide.ui"/>
<tags>View</tags>
<tags>categoryTag:Acceleo Model to Text</tags>
</descriptors>
<descriptors xmi:id="_e5_p2nffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.views.overrides.OverridesBrowser" label="Overrides" iconURI="platform:/plugin/org.eclipse.acceleo.ide.ui/icons/OverridesBrowser.gif" tooltip="" category="Acceleo Model to Text" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.acceleo.internal.ide.ui.views.overrides.OverridesBrowser"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.acceleo.ide.ui"/>
<tags>View</tags>
<tags>categoryTag:Acceleo Model to Text</tags>
</descriptors>
<descriptors xmi:id="_e5_p23ffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ui.interpreter.view" label="Interpreter" iconURI="platform:/plugin/org.eclipse.acceleo.ui.interpreter/icons/view_icon.gif" tooltip="The Interpreter view will allow users to enter expressions according to any syntax and see the result of their evaluation against a given model element." category="Acceleo Model to Text" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.acceleo.ui.interpreter.view.InterpreterView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.acceleo.ui.interpreter"/>
<tags>View</tags>
<tags>categoryTag:Acceleo Model to Text</tags>
</descriptors>
<descriptors xmi:id="_e5_p3HffEemHMbmgLRRGog" elementId="org.eclipse.ocl.examples.emf.validation.validity.ui.validity" label="ValidityView" iconURI="platform:/plugin/org.eclipse.ocl.examples.emf.validation.validity.ui/icons/validation.gif" tooltip="" category="OCL" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ocl.examples.emf.validation.validity.ui.view.ValidityView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ocl.examples.emf.validation.validity.ui"/>
<tags>View</tags>
<tags>categoryTag:OCL</tags>
</descriptors>
<descriptors xmi:id="_e5_p3XffEemHMbmgLRRGog" elementId="org.eclipse.dltk.debug.ui.dbgpLogView" label="Script Debug Log" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="Dynamic Languages" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.internal.debug.ui.log.ScriptDebugLogView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</descriptors>
<descriptors xmi:id="_e5_p3nffEemHMbmgLRRGog" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView" label="Interactive Console" iconURI="platform:/plugin/org.eclipse.dltk.debug.ui/icons/full/eview16/debug_console.gif" tooltip="" category="Dynamic Languages" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.debug.ui.display.ScriptDisplayView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</descriptors>
<descriptors xmi:id="_e5_p33ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.testing.ResultView" label="Script Unit Test" iconURI="platform:/plugin/org.eclipse.dltk.testing/icons/full/eview16/testing.gif" tooltip="" category="Dynamic Languages" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.internal.testing.ui.TestRunnerViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.testing"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</descriptors>
<descriptors xmi:id="_e5_p4HffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.ScriptExplorer" label="Script Explorer" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/package.png" tooltip="" category="Dynamic Languages" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.internal.ui.scriptview.ScriptExplorerPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.ui"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</descriptors>
<descriptors xmi:id="_e5_p4XffEemHMbmgLRRGog" elementId="org.eclipse.dltk.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/call_hierarchy.png" tooltip="" category="Dynamic Languages" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.internal.ui.callhierarchy.CallHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.ui"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</descriptors>
<descriptors xmi:id="_e5_p4nffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.TypeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/class_hi.png" tooltip="" category="Dynamic Languages" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.ui"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</descriptors>
<descriptors xmi:id="_e5_p43ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.PHPDebugOutput" label="Debug Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/debug_output.png" tooltip="" category="PHP Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.debug.ui.views.DebugOutputView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</descriptors>
<descriptors xmi:id="_e5_p5HffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.PHPBrowserOutput" label="Browser Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/browser_output.png" tooltip="" category="PHP Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.debug.ui.views.DebugBrowserView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</descriptors>
<descriptors xmi:id="_e5_p5XffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.explorer" label="PHP Explorer" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/php_explorer.png" tooltip="" category="PHP Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.ui.explorer.PHPExplorerPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.ui"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</descriptors>
<descriptors xmi:id="_e5_p5nffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.functions" label="PHP Functions" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/phpfile.png" tooltip="" category="PHP Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.ui.functions.PHPFunctionsPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.ui"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</descriptors>
<descriptors xmi:id="_e5_p53ffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.projectOutline" label="PHP Project Outline" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/php_project_outline.png" tooltip="" category="PHP Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.ui.projectoutlineview.ProjectOutlinePart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.ui"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</descriptors>
<descriptors xmi:id="_e5_p6HffEemHMbmgLRRGog" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" label="Snippets" iconURI="platform:/plugin/org.eclipse.wst.common.snippets/icons/snippets_view.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.common.snippets.internal.ui.SnippetsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.common.snippets"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_e5_p6XffEemHMbmgLRRGog" elementId="org.eclipse.wst.internet.monitor.view" label="TCP/IP Monitor" iconURI="platform:/plugin/org.eclipse.wst.internet.monitor.ui/icons/cview16/monitorView.gif" tooltip="" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.internet.monitor.ui.internal.view.MonitorView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.internet.monitor.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_e5_p6nffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" label="Hierarchy" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/class_hi.gif" tooltip="" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
<tags>View</tags>
<tags>categoryTag:JavaScript</tags>
</descriptors>
<descriptors xmi:id="_e5_p63ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" label="Script Explorer" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/package.gif" tooltip="" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.packageview.PackageExplorerPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
<tags>View</tags>
<tags>categoryTag:JavaScript</tags>
</descriptors>
<descriptors xmi:id="_e5_p7HffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/call_hierarchy.gif" tooltip="" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.callhierarchy.CallHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
<tags>View</tags>
<tags>categoryTag:JavaScript</tags>
</descriptors>
<descriptors xmi:id="_e5_p7XffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/source.gif" tooltip="" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.infoviews.SourceView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
<tags>View</tags>
<tags>categoryTag:JavaScript</tags>
</descriptors>
<descriptors xmi:id="_e5_p7nffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.JavadocView" label="Documentation" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/javadoc.gif" tooltip="JavaScript Documentation" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.infoviews.JavadocView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
<tags>View</tags>
<tags>categoryTag:JavaScript</tags>
</descriptors>
<descriptors xmi:id="_e5_p73ffEemHMbmgLRRGog" elementId="org.eclipse.wst.server.ui.ServersView" label="Servers" iconURI="platform:/plugin/org.eclipse.wst.server.ui/icons/cview16/servers_view.gif" tooltip="" category="Server" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.server.ui.internal.cnf.ServersView2"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.server.ui"/>
<tags>View</tags>
<tags>categoryTag:Server</tags>
</descriptors>
<descriptors xmi:id="_e5_p8HffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.ui.views.annotations.XMLAnnotationsView" label="Documentation" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/obj16/comment_obj.gif" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xml.ui.internal.views.annotations.XMLAnnotationsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xml.ui"/>
<tags>View</tags>
<tags>categoryTag:XML</tags>
</descriptors>
<descriptors xmi:id="_e5_p8XffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.ui.contentmodel.view" label="Content Model" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/view16/hierarchy.gif" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xml.ui.internal.views.contentmodel.ContentModelView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xml.ui"/>
<tags>View</tags>
<tags>categoryTag:XML</tags>
</descriptors>
<commands xmi:id="_e6A1tXffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform"/>
<commands xmi:id="_e6A1tnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1t3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1uHffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.pageUp" commandName="Select Page Up" description="Select to the top of the page" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1uXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.toggleWordWrap" commandName="Toggle Word Wrap" description="Toggle word wrap in the current text editor" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1unffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaseline" commandName="Reset quickdiff baseline" category="_e6BeP3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A1u3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaselineTarget" name="Reset target (HEAD, HEAD^1)" optional="false"/>
</commands>
<commands xmi:id="_e6A1vHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.emfserverLogout" commandName="Logout" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1vXffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1vnffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.explorer.ui.WorkspaceCheckin" commandName="Checkin Workspace" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1v3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1wHffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.completeocl.CompleteOCL.validate" commandName="Validate" description="Trigger expensive validation" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1wXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.deletePreviousWord" commandName="Delete Previous Word" description="Delete the previous word" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1wnffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1w3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.commands.showElementInTypeHierarchyView" commandName="Show JavaScript Element Type Hierarchy" description="Show a JavaScript element in the Type Hierarchy view" category="_e6BeR3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A1xHffEemHMbmgLRRGog" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_e6A1xXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.delimiter.unix" commandName="Convert Line Delimiters to Unix (LF, \n, 0A, ¶)" description="Converts the line delimiters to Unix (LF, \n, 0A, ¶)" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1xnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.working.set" commandName="References in Working Set" description="Search for references to the selected element in a working set" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1x3ffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1yHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.Edit" commandName="Edit Commit" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1yXffEemHMbmgLRRGog" elementId="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard" commandName="Eclipse Marketplace" description="Show the Eclipse Marketplace wizard" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1ynffEemHMbmgLRRGog" elementId="org.eclipse.emfforms.editor.ecore.delete" commandName="Delete Element" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1y3ffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.completeocl.loadresource" commandName="Load Document" description="Load Complete OCL Document to contribute validation" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1zHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.removeBendpoints" commandName="Remove Bend-points" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1zXffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.exportWorkSpace" commandName="Export Workspace" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1znffEemHMbmgLRRGog" elementId="org.eclipse.ant.ui.toggleMarkOccurrences" commandName="Toggle Ant Mark Occurrences" description="Toggles mark occurrences in Ant editors" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1z3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.addToWorkingSet" commandName="Add to Working Set" description="Adds the selected object to a working set." category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A10HffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.callhierarchy.view" commandName="JavaScript Call Hierarchy" description="Show the Call Hierarchy view" category="_e6BeQnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A10XffEemHMbmgLRRGog" elementId="org.eclipse.jdt.junit.junitShortcut.debug" commandName="Debug JUnit Test" description="Debug JUnit Test" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A10nffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.ui.editor.showCheatSheetCommand" commandName="Show Markup Cheat Sheet" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A103ffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.unpinElementsCommand" commandName="Unpin elements" description="Mark diagram elements as unpinned" category="_e6BeOnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A11HffEemHMbmgLRRGog" elementId="org.eclipse.team.ui.TeamSynchronizingPerspective" commandName="Team Synchronizing" description="Open the Team Synchronizing Perspective" category="_e6BeVXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A11XffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.compareWithRemote" commandName="Compare With Latest from Repository" description="Compare with Content on CVS Server" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A11nffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.codetemplates.SingleCodetemplate.validate" commandName="Validate" description="Trigger expensive validation" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A113ffEemHMbmgLRRGog" elementId="org.eclipse.ant.ui.open.declaration.command" commandName="Open Declaration" description="Opens the Ant editor on the referenced element" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A12HffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.ignore" commandName="Add to .cvsignore" description="Ignore the Selected Resources when Synchronizing" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A12XffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.updateDiagram" commandName="Update Sirius diagram" description="Perform Sirius diagram update" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A12nffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A123ffEemHMbmgLRRGog" elementId="org.eclipse.gef.ui.palette_view" commandName="Palette" category="_e6BeQnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A13HffEemHMbmgLRRGog" elementId="org.eclipse.emfforms.editor.ecore.new.sibling" commandName="New Sibling" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A13XffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.replaceWithRevision" commandName="Replace With Revision" description="Replace with Revision on CVS Server" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A13nffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.workbench.saveProject" commandName="Save Project" description="Save Project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A133ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.context.ui.commands.task.clearContext" commandName="Clear Context" category="_e6BeK3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A14HffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.working.set" commandName="Write Access in Working Set" description="Search for write references to the selected element in a working set" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A14XffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.hierarchy" commandName="Read Access in Hierarchy" description="Search for read references of the selected element in its hierarchy" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A14nffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A143ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.ToggleLineBreakpoint" commandName="Toggle Line Breakpoint" description="Creates or removes a line breakpoint" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A15HffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.searchForTask" commandName="Search Repository for Task" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A15XffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A15nffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A153ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.project" commandName="Write Access in Project" description="Search for write references to the selected element in the enclosing project" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A16HffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A16XffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.internal.reflog.CheckoutCommand" commandName="Checkout" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A16nffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.move" commandName="Move..." description="Move the selected item" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A163ffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.oclinecore.ui.commands.SetExportDelegateURICommand_Pivot" commandName="Set Pivot Export Delegate URI Command" description="Specify use of the Pivot Delegate URI to be used when saving to Ecore" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A17HffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A17XffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.maximizePart" commandName="Maximize Part" description="Maximize Part" category="_e6BeRHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A17nffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A173ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.commands.openElementInEditor" commandName="Open JavaScript Element" description="Open a JavaScript element in its editor" category="_e6BeR3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A18HffEemHMbmgLRRGog" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_e6A18XffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.TypesView" commandName="JavaScript Types" description="Show the Types view" category="_e6BeQnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A18nffEemHMbmgLRRGog" elementId="org.eclipse.compare.ignoreWhiteSpace" commandName="Ignore White Space" description="Ignore white space where applicable" category="_e6BeS3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A183ffEemHMbmgLRRGog" elementId="org.eclipse.oomph.setup.editor.importProjects" commandName="Import Projects" category="_e6BeRnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A19HffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.hierarchy" commandName="Write Access in Hierarchy" description="Search for write references of the selected element in its hierarchy" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A19XffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A19nffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewRefresh" commandName="Refresh" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A193ffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.ui.disable.grammar.constraints" commandName="Turn off Grammar Constraints" description="Turn off grammar Constraints" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1-HffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView" commandName="Show Java Element Type Hierarchy" description="Show a Java element in the Type Hierarchy view" category="_e6BeR3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A1-XffEemHMbmgLRRGog" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_e6A1-nffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.goToResource" commandName="Go to" description="Go to a particular resource in the active view" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1-3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1_HffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.resetPerspective" commandName="Reset Perspective" description="Reset the current perspective to its default state" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1_XffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.startLocalServer" commandName="Start local server" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1_nffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.ui.quickOutlineCommand" commandName="Quick Outline" description="Open a popup dialog with a quick outline of the current document" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A1_3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.project" commandName="References in Project" description="Search for references to the selected element in the enclosing project" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2AHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.MembersView" commandName="JavaScript Members" description="Show the Members view" category="_e6BeQnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2AXffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.RemoveServer" commandName="Remove Server" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2AnffEemHMbmgLRRGog" elementId="org.eclipse.ui.project.buildLast" commandName="Repeat Working Set Build" description="Repeat the last working set build" category="_e6BeT3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2A3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.project.buildProject" commandName="Build Project" description="Build the selected project" category="_e6BeT3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2BHffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.editor.select.previous" commandName="Select Previous Element" description="Expand selection to include previous element" category="_e6BeU3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2BXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2BnffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.editor.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_e6BeU3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2B3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.undoLastOperation" commandName="undoLastOperation" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2CHffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.natures.addRemoveNatureCommand" commandName="Toggle Acceleo Nature" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2CXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.discoveryWizardCommand" commandName="Discovery Wizard" description="shows the connector discovery wizard" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2CnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.textStart" commandName="Text Start" description="Go to the beginning of the text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2C3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2DHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.working.set" commandName="Declaration in Working Set" description="Search for declarations of the selected element in a working set" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2DXffEemHMbmgLRRGog" elementId="org.eclipse.oomph.setup.editor.refreshCache" commandName="Refresh Remote Cache" category="_e6BeRnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2DnffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.compareWithRevision" commandName="Compare With Revision" description="Compare with Revision on CVS Server" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2D3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify var access" description="Invokes quick assist and selects 'Qualify var access'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2EHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.run" commandName="Run Java Applet" description="Run Java Applet" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2EXffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2EnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.clean" commandName="Clean..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2E3ffEemHMbmgLRRGog" elementId="org.eclipse.php.server.ui.phpServerShortcut.debug" commandName="Debug PHP Web Application" description="Debug PHP Web Application" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2FHffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.quick.format" commandName="Format Element" description="Format enclosing text element" category="_e6BeQ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2FXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.rename" commandName="Rename" description="Rename the selected item" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2FnffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.newWizard" commandName="New" description="Open the New item wizard" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2F3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.project.buildAll" commandName="Build All" description="Build all projects" category="_e6BeT3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2GHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.OpenInTextEditorCommand" commandName="Open in Text Editor" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2GXffEemHMbmgLRRGog" 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="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2GnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2G3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb" commandName="Toggle Java Editor Breadcrumb" description="Toggle the Java editor breadcrumb" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2HHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.e3.importRoot" commandName="Import Child" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2HXffEemHMbmgLRRGog" elementId="org.eclipse.ui.editors.revisions.rendering.cycle" commandName="Cycle Revision Coloring Mode" description="Cycles through the available coloring modes for revisions" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2HnffEemHMbmgLRRGog" elementId="org.eclipse.ant.ui.renameInFile" commandName="Rename In File" description="Renames all references within the same buildfile" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2H3ffEemHMbmgLRRGog" 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="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2IHffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.essentialocl.EssentialOCL.validate" commandName="Validate" description="Trigger expensive validation" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2IXffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.shareProject" commandName="share" category="_e6BeW3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2InffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.debug.ui.script.opensource" commandName="Open Source" description="Shows the JavaScript source for the selected script element" category="_e6BeSnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2I3ffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2JHffEemHMbmgLRRGog" elementId="org.eclipse.team.ui.compareWithEachOther" commandName="Each Other" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2JXffEemHMbmgLRRGog" elementId="org.eclipse.ltk.ui.refactoring.commands.moveResources" commandName="Move Resources" description="Move the selected resources and notify LTK participants." category="_e6BeVnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2JnffEemHMbmgLRRGog" elementId="org.eclipse.pdt.ui.edit.text.php.show.outline" commandName="Quick Outline" description="Shows the quick outline for the editor input" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2J3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.StepInto" commandName="Step Into" description="Step into" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2KHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.BranchCheckout" commandName="Branch Checkout" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2KXffEemHMbmgLRRGog" elementId="org.eclipse.emf.compare.ide.ui.compareInEditor" commandName="Compare in new Editor" category="_e6BeS3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2KnffEemHMbmgLRRGog" elementId="org.eclipse.e4.ui.importer.openDirectory" commandName="Open Projects from File System..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2K3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.structure.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2LHffEemHMbmgLRRGog" elementId="org.eclipse.php.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2LXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.commands.AddExceptionBreakpoint" commandName="Add Java Exception Breakpoint" description="Add a Java exception breakpoint" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2LnffEemHMbmgLRRGog" 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="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2L3ffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.base.ui.ValidateCommand" commandName="Validate the OCL" description="Validate the OCL associated with the selection" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2MHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewClearCredentials" commandName="Clear Credentials" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2MXffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.Login" commandName="Login" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2MnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2M3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.ui.convertToMarkupCommand" commandName="Generate Markup" category="_e6BeP3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A2NHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.ui.targetLanguage" name="TargetLanguage" optional="false"/>
</commands>
<commands xmi:id="_e6A2NXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2NnffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.showToolTip" commandName="Show Tooltip Description" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2N3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.debug.ui.breakpoint.properties" commandName="JavaScript Breakpoint Properties" description="View and edit the properties for a given JavaScript breakpoint" category="_e6BeSnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2OHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.context.ui.commands.task.copyContext" commandName="Copy Context" category="_e6BeK3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2OXffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.showViewMenu" commandName="Show View Menu" description="Show the view menu" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2OnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Commit" commandName="Commit..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2O3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or method" category="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2PHffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.shiftRight" commandName="Shift Right" description="Shift a block of text to the right" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2PXffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.backwardHistory" commandName="Backward History" description="Move backward in the editor navigation history" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2PnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.working.set" commandName="Implementors in Working Set" description="Search for implementors of the selected interface in a working set" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2P3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.removeTrailingWhitespace" commandName="Remove Trailing Whitespace" description="Removes the trailing whitespace of each line" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2QHffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.findIncremental" commandName="Incremental Find" description="Incremental find" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2QXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2QnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.convert.anonymous.to.nested" commandName="Convert Anonymous Class to Nested" description="Convert an anonymous class to a nested class" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2Q3ffEemHMbmgLRRGog" elementId="org.eclipse.emfforms.editor.new.sibling" commandName="New Sibling" category="_e6BeNXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2RHffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2RXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.ImportChangedProjectsCommandId" commandName="Import Changed Projects" description="Import or create in local Git repository" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2RnffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2R3ffEemHMbmgLRRGog" elementId="org.eclipse.emfforms.editor.delete" commandName="Delete Element" category="_e6BeNXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2SHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.command.deselectAll" commandName="Deselect all" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2SXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2SnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.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="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2S3ffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2THffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.edit.text.format" commandName="Format Source" description="Format a PDE Source Page" category="_e6BePHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2TXffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.search.references" commandName="Search References" description="Search the element references" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2TnffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.updateProject" commandName="update" category="_e6BeW3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2T3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2UHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewNewRemote" commandName="Create Remote..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2UXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.generate.hashcode.equals" commandName="Generate hashCode() and equals()" description="Generates hashCode() and equals() functions for the type" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2UnffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.oclinecore.ui.outline.SaveAsOCLinEcoreCommand" commandName="Save As OCLinEcore Command" description="Save file changing format to OCLinEcore" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2U3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2VHffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.delete.line" commandName="Delete Line" description="Delete a line of text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2VXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2VnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2V3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.open.implementation" commandName="Open Implementation" description="Opens the Implementations of a method in its hierarchy" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2WHffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.showHistory" commandName="Show History" description="Show History" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2WXffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.edit.text.open.editor" commandName="Open Selection" description="Opens an editor with the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2WnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.junit.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2W3ffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2XHffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.sync" commandName="Synchronize with Repository" description="Synchronize the workspace resources with those in the repository" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2XXffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.ExportProjectHistory" commandName="Export Project History" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2XnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.commands.showElementInPackageView" commandName="Show Java Element in Package Explorer" description="Select Java element in the Package Explorer view" category="_e6BeR3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A2X3ffEemHMbmgLRRGog" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_e6A2YHffEemHMbmgLRRGog" elementId="org.eclipse.oomph.setup.editor.performDropdown" commandName="Perform Dropdown" category="_e6BeRnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2YXffEemHMbmgLRRGog" 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="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2YnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.create.getter.setter" commandName="Generate Getters and Setters" description="Generate Getter and Setter functions for type's vars" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2Y3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2ZHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.MergeTool" commandName="Merge Tool" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2ZXffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.addAllPluginsToJavaSearch" commandName="Add All Plug-ins to Java Search" description="Adds all plug-ins in the target platform to java search" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2ZnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.command.shareProject" commandName="Share with Git" description="Share the project using Git" category="_e6BeP3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A2Z3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.command.projectNameParameter" name="Project" optional="false"/>
</commands>
<commands xmi:id="_e6A2aHffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2aXffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.quickOutline" commandName="Quick Outline" description="Open a quick outline popup dialog for a given editor input" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2anffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.fullscreenmode" commandName="Toggle Full Screen" description="Toggles the window between full screen and normal" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2a3ffEemHMbmgLRRGog" elementId="org.eclipse.equinox.p2.ui.sdk.installationDetails" commandName="Installation Details" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2bHffEemHMbmgLRRGog" elementId="org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize resources in the workspace with another location" category="_e6BeQXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2bXffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.cdo.ui.checkinCommand" commandName="Checkin" category="_e6BeM3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2bnffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor" description="Switch to the next editor" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2b3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.internal.reflog.CopyCommand" commandName="Copy SHA-1" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2cHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.new.subtask" commandName="New Subtask" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2cXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.JavaBrowsingPerspective" commandName="JavaScript Browsing" description="Show the JavaScript Browsing perspective" category="_e6BeVXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2cnffEemHMbmgLRRGog" elementId="org.eclipse.ui.help.helpContents" commandName="Help Contents" description="Open the help contents" category="_e6BeTnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2c3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2dHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Reset" commandName="Reset..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2dXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.delete" commandName="Delete" description="Delete the selection" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2dnffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.explorer.ui.CheckoutOpen" commandName="Open Checkout" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2d3ffEemHMbmgLRRGog" 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="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2eHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.RenameBranch" commandName="Rename Branch" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2eXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Synchronize" commandName="Synchronize" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2enffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.emfserverRegisterEPackage" commandName="Register EPackage" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2e3ffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2fHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2fXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.findPrevious" commandName="Find Previous" description="Find previous item" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2fnffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.ToggleBreakpoint" commandName="Toggle Breakpoint" description="Creates or removes a breakpoint" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2f3ffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.command.hideElement" commandName="Hide element" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2gHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.commit.Revert" commandName="Revert Commit" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2gXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.commit.StashDrop" commandName="Delete Stashed Commit..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2gnffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.openTask" commandName="Open Task" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2g3ffEemHMbmgLRRGog" elementId="org.eclipse.sirius.ui.tools.internal.actions.nature.addRemoveNatureCommand" commandName="Create a Modeling project" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2hHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.mergeBranch" commandName="mergeBranch" category="_e6BeW3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2hXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.scroll.lineUp" commandName="Scroll Line Up" description="Scroll up one line of text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2hnffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.OpenGeneratedFileCommand" commandName="Open Generated File" description="Open the file that has been generated from this file" category="_e6BeU3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2h3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.explorer.ui.WorkspaceRevert" commandName="Revert Workspace" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2iHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2iXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.java.ui.editor.folding.auto" commandName="Toggle Active Folding" description="Toggle Active Folding" category="_e6BeSXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2inffEemHMbmgLRRGog" elementId="org.eclipse.pde.runtime.spy.commands.spyCommand" commandName="Plug-in Selection Spy" description="Show the Plug-in Spy" category="_e6BeWnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2i3ffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.revealElements" commandName="Reveal hidden elements" description="Reveal all the elements" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2jHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2jXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.folding.toggle" commandName="Toggle Folding" description="Toggles folding in the current editor" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2jnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters" commandName="Show Whitespace Characters" description="Shows whitespace characters in current text editor" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2j3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.revert" commandName="Revert" description="Revert to the last saved state" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2kHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.importChanges" commandName="Import Changes" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2kXffEemHMbmgLRRGog" elementId="org.eclipse.oomph.ui.ToggleOfflineMode" commandName="Toggle Offline Mode" category="_e6BePnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2knffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.view.editor.controls.generateDefault" commandName="Generate Controls" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2k3ffEemHMbmgLRRGog" elementId="org.eclipse.oomph.setup.editor.openLog" commandName="Open Setup Log" category="_e6BeRnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2lHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.table.ui.quickoutline" commandName="Table Editor Quick Outline Command" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2lXffEemHMbmgLRRGog" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_e6BeT3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2lnffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.import" commandName="Import" description="Import" category="_e6BeMXffEemHMbmgLRRGog">
<parameters xmi:id="_e6A2l3ffEemHMbmgLRRGog" elementId="importWizardId" name="Import Wizard"/>
</commands>
<commands xmi:id="_e6A2mHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.Merge" commandName="Merge" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2mXffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.switchToEditor" commandName="Switch to Editor" description="Switch to an editor" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2mnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.find.broken.nls.keys" commandName="Find Broken Externalized Strings" description="Finds undefined, duplicate and unused externalized string keys in property files" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2m3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.help.dynamicHelp" commandName="Show Contextual Help" description="Open the contextual help" category="_e6BeTnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2nHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into Java comments" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2nXffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.editor.FindReferences" commandName="Find References" description="Finds all references to the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2nnffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.activateTask" commandName="Activate Task" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2n3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.CreateTag" commandName="Create Tag..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2oHffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2oXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the JavaScript file" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2onffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.toggleInsertMode" commandName="Toggle Insert Mode" description="Toggle insert mode" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2o3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewDelete" commandName="Delete Repository" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2pHffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.closePart" commandName="Close Part" description="Close the active workbench part" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2pXffEemHMbmgLRRGog" elementId="org.eclipse.ui.editors.revisions.id.toggle" commandName="Toggle Revision Id Display" description="Toggles the display of the revision id" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2pnffEemHMbmgLRRGog" elementId="org.eclipse.ui.project.cleanAction" commandName="Build Clean" description="Discard old built state" category="_e6BeT3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2p3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.back" commandName="Back" description="Navigate back" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2qHffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.wordNext" commandName="Select Next Word" description="Select the next word" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2qXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.JavaBrowsingPerspective" commandName="Java Browsing" description="Show the Java Browsing perspective" category="_e6BeVXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2qnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.pageDown" commandName="Page Down" description="Go down one page" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2q3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.project" commandName="Implementors in Project" description="Search for implementors of the selected interface in the enclosing project" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2rHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.GarbageCollect" commandName="Collect Garbage" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2rXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.CompareWithWorkingTree" commandName="Compare with Working Tree" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2rnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Branch" commandName="Branch" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2r3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.indent" commandName="Correct &Indentation" description="&Indents the current line or selection depending on surrounding source code" category="_e6BeQ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2sHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.ProjectsView" commandName="JavaScript Projects" description="Show the Projects view" category="_e6BeQnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2sXffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.ui.previousSibling" commandName="Previous Sibling" description="Go to Previous Sibling" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2snffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewConfigurePush" commandName="Configure Push..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2s3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.findIncrementalReverse" commandName="Incremental Find Reverse" description="Incremental find reverse" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2tHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.find.binding.FindElementAction" commandName="Find Element" description="Find in model" category="_e6BeWHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2tXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.introduce.factory" commandName="Introduce Factory" description="Introduce a factory function to encapsulate invocation of the selected constructor" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2tnffEemHMbmgLRRGog" elementId="org.eclipse.ant.ui.antShortcut.run" commandName="Run Ant Build" description="Run Ant Build" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2t3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.convertAnonymousToLocal.assist" commandName="Quick Assist - Convert anonymous to local class" description="Invokes quick assist and selects 'Convert anonymous to local class'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2uHffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.oclinecore.ui.outline.CreateDynamicInstanceCommand" commandName="Create Dynamic Instance Command" description="Create a new Model containing a Dynamic Instance of this Class" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2uXffEemHMbmgLRRGog" elementId="org.eclipse.pdt.ui.edit.text.select.previous" commandName="Select Previous Element" description="Expands selection to include previous sibling" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2unffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.stash.apply" commandName="Apply Stashed Changes" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2u3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2vHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.table.ui.command.refreshElement" commandName="Refresh element" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2vXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.columnNext" commandName="Next Column" description="Go to the next column" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2vnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.Squash" commandName="Squash Commits" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2v3ffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.replaceWithTag" commandName="Replace With Another Branch or Version" description="Replace with Branch or Version on the CVS Server" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2wHffEemHMbmgLRRGog" elementId="org.eclipse.search.ui.performTextSearchWorkingSet" commandName="Find Text in Working Set" description="Searches the files in the working set for specific text." category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2wXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.occurrences.in.file.quickMenu" commandName="Show Occurrences in File Quick Menu" description="Shows the Occurrences in File quick menu" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2wnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.wordNext" commandName="Next Word" description="Go to the next word" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2w3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.testing.testingShortcut.rerunFailedFirst" commandName="Rerun testing Test - Failures First" description="Rerun testing Test - Failures First" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2xHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.convertLocalToField.assist" commandName="Quick Assist - Convert local variable to var" description="Invokes quick assist and selects 'Convert local variable to var'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2xXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2xnffEemHMbmgLRRGog" elementId="org.eclipse.quickdiff.toggle" commandName="Quick Diff Toggle" description="Toggles quick diff information display on the line number ruler" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2x3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.deleteNext" commandName="Delete Next" description="Delete the next character" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2yHffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.editor.select.last" commandName="Restore Last Selection" description="Restore last selection from History" category="_e6BeU3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2yXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.FetchGerritChange" commandName="Fetch From Gerrit" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2ynffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2y3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.SynchronizeAll" commandName="Synchronize Changed" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2zHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.commands.Watch" commandName="Watch" description="Create new watch expression" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2zXffEemHMbmgLRRGog" elementId="org.eclipse.sirius.ui.tools.uncontrolCommand" commandName="Uncontrol" category="_e6BeOnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2znffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.Reword" commandName="Reword Commit" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2z3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.context.ui.editor.folding.auto" commandName="Toggle Active Folding" description="Toggle Active Folding" category="_e6BeMHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A20HffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.OpenCommit" commandName="Open Git Commit" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A20XffEemHMbmgLRRGog" elementId="org.eclipse.sirius.editor.command.show.outline" commandName="VSM Quick outline" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A20nffEemHMbmgLRRGog" elementId="org.eclipse.wst.server.stop" commandName="Stop" description="Stop the server" category="_e6BeL3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A203ffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.ui.CreateBranch" commandName="Create Branch" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A21HffEemHMbmgLRRGog" elementId="org.eclipse.ui.help.displayHelp" commandName="Display Help" description="Display a Help topic" category="_e6BeTnffEemHMbmgLRRGog">
<parameters xmi:id="_e6A21XffEemHMbmgLRRGog" elementId="href" name="Help topic href"/>
</commands>
<commands xmi:id="_e6A21nffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.pageDown" commandName="Select Page Down" description="Select to the bottom of the page" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A213ffEemHMbmgLRRGog" elementId="org.eclipse.ltk.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A22HffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.join.lines" commandName="Join Lines" description="Join lines of text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A22XffEemHMbmgLRRGog" elementId="org.eclipse.amalgam.explorer.contextual.core.ui.forwardNavigation" commandName="Navigate Forward in Contextual Explorer" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A22nffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A223ffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.showContextMenu" commandName="Show Context Menu" description="Show the context menu" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A23HffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.edit.text.show.in.explorer.view" commandName="Show in PHP Explorer View" description="Shows the selected element in the PHP Explorer" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A23XffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.comment" commandName="Comment" description="Turn the selected lines into DLTK comments" category="_e6BeQ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A23nffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A233ffEemHMbmgLRRGog" elementId="org.eclipse.oomph.p2.ui.ExploreRepository" commandName="Explore Repository" category="_e6BeOXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A24HffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A24XffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.references.in.project" commandName="Find References In Project" description="Finds all references to the selection in the project" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A24nffEemHMbmgLRRGog" elementId="org.eclipse.ltk.ui.refactor.show.refactoring.history" commandName="Open Refactoring History " description="Opens the refactoring history" category="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A243ffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A25HffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the compilation unit" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A25XffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals" commandName="Quick Fix" description="Suggest possible fixes for a problem" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A25nffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_e6BeQ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A253ffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.import.project" commandName="Import Project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A26HffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.hideLabel" commandName="Hide label" description="Hide the label of the element" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A26XffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.refactor.documentation" commandName="Generate documentation" description="Generate the documentation of the selected element" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A26nffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A263ffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.nextPerspective" commandName="Next Perspective" description="Switch to the next perspective" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A27HffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.UpdateRepositoryConfiguration" commandName="Update Repository Configuration" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A27XffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.commit.StashApply" commandName="Apply Stashed Changes" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A27nffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A273ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.ShowVersions" commandName="Open" category="_e6BeP3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A28HffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.CompareMode" name="Compare mode"/>
</commands>
<commands xmi:id="_e6A28XffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab" description="Switch to the next tab" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A28nffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.quickAccess" commandName="Quick Access" description="Quickly access UI elements" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A283ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.showInformation" commandName="Show Tooltip Description" description="Displays information for the current caret location in a focused hover" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A29HffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A29XffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.attachment.open" commandName="Open Attachment" category="_e6BeRHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A29nffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.extractLocal.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A293ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2-HffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.historybrowserview.compareRevisions" commandName="CompareRevisions" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2-XffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.toggleMemoryMonitorsPane" commandName="Toggle Memory Monitors Pane" description="Toggle visibility of the Memory Monitors Pane" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2-nffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.ConfigureUpstreamFetch" commandName="Configure Upstream Fetch" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2-3ffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2_HffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Discard" commandName="Replace with File in Index" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2_XffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_e6BeQ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2_nffEemHMbmgLRRGog" elementId="org.eclipse.dltk.testing.testingShortcut.run" commandName="Run testing Test" description="Run testing Test" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A2_3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewCreateBranch" commandName="Create Branch..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3AHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.view.editor.controls.generateDefaultOnView" commandName="Generate Controls" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3AXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewCopyPath" commandName="Copy Path to Clipboard" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3AnffEemHMbmgLRRGog" elementId="org.eclipse.oomph.setup.editor.perform.startup" commandName="Perform Setup Tasks (Startup)" category="_e6BeRnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3A3ffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.refactor.rename" commandName="Rename..." description="Rename the selected element and all its occurrences" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3BHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.JavaPerspective" commandName="JavaScript" description="Show the JavaScript perspective" category="_e6BeVXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3BXffEemHMbmgLRRGog" 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="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3BnffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.update" commandName="Update" description="Update resources with new content from the repository" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3B3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.modify.method.parameters" commandName="Change Function Signature" description="Change function signature includes parameter names and parameter order" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3CHffEemHMbmgLRRGog" elementId="org.eclipse.ui.browser.openBrowser" commandName="Open Browser" description="Opens the default web browser." category="_e6BeMnffEemHMbmgLRRGog">
<parameters xmi:id="_e6A3CXffEemHMbmgLRRGog" elementId="url" name="URL"/>
<parameters xmi:id="_e6A3CnffEemHMbmgLRRGog" elementId="browserId" name="Browser Id"/>
<parameters xmi:id="_e6A3C3ffEemHMbmgLRRGog" elementId="name" name="Browser Name"/>
<parameters xmi:id="_e6A3DHffEemHMbmgLRRGog" elementId="tooltip" name="Browser Tooltip"/>
</commands>
<commands xmi:id="_e6A3DXffEemHMbmgLRRGog" elementId="org.eclipse.php.server.ui.phpServerShortcut.run" commandName="Run PHP Web Application" description="Run PHP Web Application" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3DnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.constant" commandName="Extract Constant" description="Extracts a constant into a new static var and uses the new static var" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3D3ffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3EHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.updateProjectVersion" commandName="updateToVersion" category="_e6BeW3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3EXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.DeleteBranch" commandName="Delete Branch..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3EnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.contentAssist.contextInformation" commandName="Context Information" description="Show Context Information" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3E3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.saveAs" commandName="Save As" description="Save the current contents to another location" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3FHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.workspace" commandName="Read Access in Workspace" description="Search for read references to the selected element in the workspace" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3FXffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.previousPerspective" commandName="Previous Perspective" description="Switch to the previous perspective" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3FnffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.splitEditor" commandName="Toggle Split Editor" description="Split or join the currently active editor." category="_e6BeMnffEemHMbmgLRRGog">
<parameters xmi:id="_e6A3F3ffEemHMbmgLRRGog" elementId="Splitter.isHorizontal" name="Orientation" optional="false"/>
</commands>
<commands xmi:id="_e6A3GHffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.collapseAll" commandName="Collapse All" description="Collapse the current tree" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3GXffEemHMbmgLRRGog" elementId="org.eclipse.compare.copyAllRightToLeft" commandName="Copy All from Right to Left" description="Copy All Changes from Right to Left" category="_e6BeS3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3GnffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.editor.copyqualifiedname.EditorCopyQualifiedName" commandName="Copy Qualified Name" description="Copy the qualified name for the selected element" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3G3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.deactivateSelectedTask" commandName="Deactivate Selected Task" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3HHffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.lockToolBar" commandName="Lock the Toolbars" description="Lock the Toolbars" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3HXffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.historybrowserview.revert" commandName="Revert Revision" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3HnffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.Disconnect" commandName="Disconnect" description="Disconnect" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3H3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.explorer.ui.RepositoryDisconnect" commandName="Disconnect Repository" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3IHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.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="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3IXffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3InffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.removeFromWorkingSet" commandName="Remove From Working Set" description="Removes the selected object from a working set." category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3I3ffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.createAntBuildFile" commandName="Create Ant Build File" description="Creates an Ant build file for the current project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3JHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.openSelectedTask" commandName="Open Selected Task" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3JXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.changeToStatic" commandName="Quick Fix - Change to static access" description="Invokes quick assist and selects 'Change to static access'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3JnffEemHMbmgLRRGog" elementId="org.eclipse.emf.validation.ShowValidityViewAction" commandName="Show Validity View" description="Show Validity View" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3J3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesLinkWithSelection" commandName="Link with Selection" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3KHffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.editor.select.next" commandName="Select Next Element" description="Expand selection to include next element" category="_e6BeU3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3KXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.context.ui.commands.toggle.focus.active.view" commandName="Focus on Active Task" description="Toggle the focus on active task for the active view" category="_e6BeK3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3KnffEemHMbmgLRRGog" elementId="org.eclipse.ui.ide.deleteCompleted" commandName="Delete Completed Tasks" description="Delete the tasks marked as completed" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3K3ffEemHMbmgLRRGog" elementId="org.eclipse.php.perspective" commandName="PHP" description="Shows the PHP perspective" category="_e6BeVXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3LHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.goToNextUnread" commandName="Go To Next Unread Task" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3LXffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.ui.UnlockObject" commandName="Unlock Object" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3LnffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3L3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RebaseInteractiveCurrent" commandName="%RebaseInteractiveCurrentHandler.name" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3MHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3MXffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3MnffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.extractAsQuery" commandName="Extract Query..." description="Extract the selected text as a new query" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3M3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.deleteNextWord" commandName="Delete Next Word" description="Delete the next word" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3NHffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.openDependencies" commandName="Open Plug-in Dependencies" description="Opens the plug-in dependencies view for the current plug-in" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3NXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in Java editors" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3NnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.SkipRebase" commandName="Skip commit and continue" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3N3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected method" category="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3OHffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3OXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.SetQuickdiffBaseline" commandName="Set quickdiff baseline" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3OnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.undo" commandName="Undo" description="Undo the last operation" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3O3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.newQuickMenu" commandName="New menu" description="Open the New menu" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3PHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3PXffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.actions.WatchCommand" commandName="Watch" description="Create a watch expression from the current selection and add it to the Expressions view" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3PnffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.openWorkspace" commandName="Switch Workspace" description="Open the workspace selection dialog" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3P3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3QHffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.closeAll" commandName="Close All" description="Close all editors" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3QXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a Java editor" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3QnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3Q3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.importProject" commandName="Import Project" category="_e6BeW3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3RHffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3RXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Merge" commandName="Merge" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3RnffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.security.ui.openEditor" commandName="Manage Security" category="_e6BeLXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3R3ffEemHMbmgLRRGog" elementId="org.eclipse.ltk.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3SHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.commit" commandName="commit" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3SXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.ReplaceWithRef" commandName="Replace with branch, tag, or reference" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3SnffEemHMbmgLRRGog" elementId="org.eclipse.emf.compare.ide.ui.compareInDialog" commandName="Compare in Dialog" category="_e6BeS3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3S3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.submitTask" commandName="Submit Task" description="Submits the currently open task" category="_e6BeRHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3THffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.cdo.ui.updateCommand" commandName="Update" category="_e6BeM3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3TXffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.refreshSirius" commandName="Refresh" description="Refresh the element" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3TnffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.base.ui.SaveASCommand" commandName="Save Abstract Syntax" description="Save the Abstract Syntax representation to an XMI file " category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3T3ffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3UHffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.ui.reload.dependencies" commandName="Reload Dependencies" description="Reload Dependencies" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3UXffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.generate.xml" commandName="&XML File..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3UnffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.Logout" commandName="Logout" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3U3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" commandName="Show Selected Element Only" description="Show Selected Element Only" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3VHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.ProjectProperties" commandName="ProjectInfo Properties" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3VXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3VnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.junit.junitShortcut.rerunFailedFirst" commandName="Rerun JUnit Test - Failures First" description="Rerun JUnit Test - Failures First" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3V3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.save" commandName="Save Project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3WHffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.export" commandName="Export" description="Export" category="_e6BeMXffEemHMbmgLRRGog">
<parameters xmi:id="_e6A3WXffEemHMbmgLRRGog" elementId="exportWizardId" name="Export Wizard"/>
</commands>
<commands xmi:id="_e6A3WnffEemHMbmgLRRGog" elementId="org.eclipse.wst.xsd.ui.refactor.makeTypeGlobal" commandName="Make &Anonymous Type Global" description="Promotes anonymous type to global level and replaces its references" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3W3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3XHffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3XXffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.FormatAction" commandName="Format" description="Format text" category="_e6BeU3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3XnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.ApplyPatch" commandName="Apply Patch" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3X3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.JavaPerspective" commandName="Java" description="Show the Java perspective" category="_e6BeVXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3YHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.indent" commandName="Correct Indentation" description="Corrects the indentation of the selected lines" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3YXffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.resetOrigin" commandName="Reset Origin" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3YnffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.command.refreshElement" commandName="Refresh" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3Y3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.explorer.ui.CheckoutClose" commandName="Close Checkout" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3ZHffEemHMbmgLRRGog" 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="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3ZXffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.edit.text.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_e6BePXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3ZnffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.security.ui.resetPassword" commandName="Reset Password" description="Reset the selected user's password. Must be an administrator to reset passwords." category="_e6BeLXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3Z3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.forwardHistory" commandName="Forward History" description="Move forward in the editor navigation history" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3aHffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.show.outline" commandName="Quick Outline" description="Show Quick Outline view" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3aXffEemHMbmgLRRGog" elementId="org.eclipse.search.ui.performTextSearchProject" commandName="Find Text in Project" description="Searches the files in the project for specific text." category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3anffEemHMbmgLRRGog" elementId="org.eclipse.ui.project.rebuildAll" commandName="Rebuild All" description="Rebuild all projects" category="_e6BeT3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3a3ffEemHMbmgLRRGog" elementId="org.eclipse.gef.zoom_in" commandName="Zoom In" description="Zoom In" category="_e6BeV3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3bHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.revert" commandName="Revert" category="_e6BeW3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3bXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3bnffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.compareProjects" commandName="compareProjects" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3b3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.openLocalFile" commandName="Open File..." description="Open a file" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3cHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Disconnect" commandName="Disconnect" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3cXffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.workbench.export" commandName="Export model" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3cnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3c3ffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.externalizeStrings" commandName="Externalize Strings in Plug-ins" description="Extract translatable strings from plug-in files" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3dHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.share" commandName="share" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3dXffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.refresh" commandName="Refresh" description="Refresh the selected items" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3dnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewChangeCredentials" commandName="Change Credentials" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3d3ffEemHMbmgLRRGog" elementId="org.eclipse.php.internal.ui.assignToLocal.assist" commandName="Quick Assist - Assign to local variable" description="Invokes quick assist and selects Assign to local variable" category="_e6BePXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3eHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.correction.extractMethodInplace.assist" commandName="Quick Assist - Extract method" description="Invokes quick assist and selects 'Extract to method'" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3eXffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.showHistoryView" commandName="showHistoryView" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3enffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.closeAllPerspectives" commandName="Close All Perspectives" description="Close all open perspectives" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3e3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3fHffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.updateSwitch" commandName="Switch to Another Branch or Version" description="Switch to Another Branch or Version" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3fXffEemHMbmgLRRGog" elementId="org.eclipse.ocl.examples.debug.ui.DebugHandler" commandName="Debug..." description="Debug..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3fnffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.disconnected" commandName="Disconnected" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3f3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.lineStart" commandName="Select Line Start" description="Select to the beginning of the line of text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3gHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.commit.Reword" commandName="Reword Commit" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3gXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in JavaScript editors" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3gnffEemHMbmgLRRGog" elementId="org.eclipse.ui.editors.lineNumberToggle" commandName="Show Line Numbers" description="Toggle display of line numbers" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3g3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3hHffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.edit.text.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the Refactor Quick Menu" category="_e6BePXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3hXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.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="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3hnffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.index.ui.command.ResetIndex" commandName="Refresh Search Index" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3h3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit" commandName="Toggle Latest Branch Commit" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3iHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.PushCommit" commandName="Push Commit..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3iXffEemHMbmgLRRGog" elementId="org.eclipse.xtext.xbase.ui.multiOrganizeImports" commandName="Organize All Imports" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3inffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to var" description="Invokes quick assist and selects 'Assign to var'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3i3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.ide.showInSystemExplorer" commandName="Show In (System Explorer)" description="Show in system's explorer (file manager)" category="_e6BeR3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A3jHffEemHMbmgLRRGog" elementId="org.eclipse.ui.ide.showInSystemExplorer.path" name="Resource System Path Parameter"/>
</commands>
<commands xmi:id="_e6A3jXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.new.local.task" commandName="New Local Task" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3jnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.lineDown" commandName="Select Line Down" description="Extend the selection to the next line of text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3j3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.project.createProject" commandName="Create new project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3kHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3kXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.lowerCase" commandName="To Lower Case" description="Changes the selection to lower case" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3knffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.CompareWithIndex" commandName="Compare with Index" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3k3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.NewLocalProject" commandName="NewLocalProject" category="_e6BeW3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3lHffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.zoomOut" commandName="Zoom Out" description="Zoom out text, decrease default font size for text editors" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3lXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskIncomplete" commandName="Mark Task Incomplete" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3lnffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.workspace.internal.ui.undoLastCommand" commandName="Undo Last Command" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3l3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.deleteProject" commandName="deleteProject" category="_e6BeW3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3mHffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.save" commandName="Save" description="Save the current contents" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3mXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.correction.assignAllParamsToNewFields.assist" commandName="Quick Assist - Assign all parameters to new fields" description="Invokes quick assist and selects 'Assign all parameters to new fields'" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3mnffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3m3ffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.command.hideLabel" commandName="Hide label" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3nHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.introduce.indirection" commandName="Introduce Indirection" description="Introduce an indirection to encapsulate invocations of a selected function" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3nXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.occurrences.in.file" commandName="Search All Occurrences in File" description="Search for all occurrences of the selected element in its declaring file" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3nnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.command" commandName="Content Assist" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_e6BeJ3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A3n3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.category_id" name="type" optional="false"/>
</commands>
<commands xmi:id="_e6A3oHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskReadGoToNextUnread" commandName="Mark Task Read and Go To Next Unread Task" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3oXffEemHMbmgLRRGog" elementId="org.eclipse.team.ui.applyPatch" commandName="Apply Patch..." description="Apply a patch to one or more workspace projects." category="_e6BeQXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3onffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.ProjectCheckout" commandName="Project Checkout" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3o3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.lineEnd" commandName="Select Line End" description="Select to the end of the line of text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3pHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskRead" commandName="Mark Task Read" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3pXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3pnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3p3ffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.edit.text.add.description" commandName="Generate Element Comment " description="Generate Element Comment" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3qHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.indent" commandName="Indent Line" description="Indents the current line" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3qXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3qnffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.StepOver" commandName="Step Over" description="Step over" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3q3ffEemHMbmgLRRGog" elementId="org.eclipse.compare.selectPreviousChange" commandName="Select Previous Change" description="Select Previous Change" category="_e6BeS3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3rHffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.ui.UnlockTree" commandName="Unlock Tree" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3rXffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.exit" commandName="Exit" description="Exit the application" category="_e6BeMXffEemHMbmgLRRGog">
<parameters xmi:id="_e6A3rnffEemHMbmgLRRGog" elementId="mayPrompt" name="may prompt"/>
</commands>
<commands xmi:id="_e6A3r3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.CompareWithHead" commandName="Compare with HEAD Revision" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3sHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.CompareWithCommit" commandName="Compare with Commit..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3sXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewOpen" commandName="Open" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3snffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.deactivateAllTasks" commandName="Deactivate Task" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3s3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.ShowHistory" commandName="Show in History" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3tHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3tXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.debug.ui.commands.ScriptInspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3tnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.SimplePush" commandName="Push to Upstream" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3t3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.addMemoryMonitor" commandName="Add Memory Block" description="Add memory block" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3uHffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.organizeManifest" commandName="Organize Manifests" description="Cleans up plug-in manifest files" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3uXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3unffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.editor.organize.use.statements" commandName="Organize Use Statements" description="Sort the use statements for class" category="_e6BePXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3u3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.closable" commandName="Close/Open" category="_e6BeP3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A3vHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.project.type" name="ECPCloseable Type"/>
</commands>
<commands xmi:id="_e6A3vXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.junit.junitShortcut.run" commandName="Run JUnit Test" description="Run JUnit Test" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3vnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.PushHeadToGerrit" commandName="Push Current Head to Gerrit" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3v3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.selectAll" commandName="Select All" description="Select all" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3wHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3wXffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.workbench.deleteModelElement" commandName="Delete Model Element" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3wnffEemHMbmgLRRGog" 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="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3w3ffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.navigate.open.method" commandName="Opens a method in a PHP editor" description="Opens a method in a PHP editor" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3xHffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.oclinecore.ui.outline.SaveInEcoreCommand" commandName="Save In Ecore Command" description="Save file changing format to Ecore (String stays as String)" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3xXffEemHMbmgLRRGog" elementId="org.eclipse.ui.project.rebuildProject" commandName="Rebuild Project" description="Rebuild the selected projects" category="_e6BeT3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3xnffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.editor.copyqualifiedname.OutlineCopyQualifiedName" commandName="Copy Qualified Name" description="Copy the qualified name for the selected element" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3x3ffEemHMbmgLRRGog" elementId="org.eclipse.sirius.ui.tools.controlCommand" commandName="Control" category="_e6BeOnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3yHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.historybrowserview.removetag" commandName="RemoveTag" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3yXffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.branchMerge" commandName="merge branch" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3ynffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.copyLineDown" commandName="Copy Lines" description="Duplicates the selected lines and moves the selection to the copy" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3y3ffEemHMbmgLRRGog" elementId="org.eclipse.oomph.setup.editor.perform" commandName="Perform Setup Tasks" category="_e6BeRnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3zHffEemHMbmgLRRGog" elementId="org.eclipse.ui.help.installationDialog" commandName="Installation Information" description="Open the installation dialog" category="_e6BeTnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3zXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3znffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3z3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.ToggleStepFilters" commandName="Use Step Filters" description="Toggles enablement of debug step filters" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A30HffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.lineUp" commandName="Line Up" description="Go up one line of text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A30XffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.windowStart" commandName="Window Start" description="Go to the start of the window" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A30nffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A303ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.commons.ui.command.AddRepository" commandName="Add Repository" category="_e6BeO3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A31HffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A31XffEemHMbmgLRRGog" elementId="org.eclipse.ant.ui.antShortcut.debug" commandName="Debug Ant Build" description="Debug Ant Build" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A31nffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.command.validateDiagram" commandName="Validate Diagram" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A313ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewRenameBranch" commandName="Rename Branch..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A32HffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.addNonNLS" commandName="Quick Fix - Add non-NLS tag" description="Invokes quick assist and selects 'Add non-NLS tag'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A32XffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.AssumeUnchanged" commandName="Assume Unchanged" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A32nffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.closePerspective" commandName="Close Perspective" description="Close the current perspective" category="_e6BeMnffEemHMbmgLRRGog">
<parameters xmi:id="_e6A323ffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.closePerspective.perspectiveId" name="Perspective Id"/>
</commands>
<commands xmi:id="_e6A33HffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A33XffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.ui.nextSibling" commandName="Next Sibling" description="Go to Next Sibling" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A33nffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.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="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A333ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a JavaScript editor" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A34HffEemHMbmgLRRGog" elementId="org.eclipse.ui.cheatsheets.openCheatSheetURL" commandName="Open Cheat Sheet from URL" description="Open a Cheat Sheet from file at a specified URL." category="_e6BeTnffEemHMbmgLRRGog">
<parameters xmi:id="_e6A34XffEemHMbmgLRRGog" elementId="cheatSheetId" name="Identifier" optional="false"/>
<parameters xmi:id="_e6A34nffEemHMbmgLRRGog" elementId="name" name="Name" optional="false"/>
<parameters xmi:id="_e6A343ffEemHMbmgLRRGog" elementId="url" name="URL" optional="false"/>
</commands>
<commands xmi:id="_e6A35HffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.PushBranch" commandName="Push Branch..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A35XffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.commands.Execute" commandName="Execute" description="Evaluate selected text" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A35nffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.manageUserGroups" commandName="manage user/groups" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A353ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A36HffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_e6BeXXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A36XffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.edit.text.php.open.type.hierarchy" commandName="Open Type Hierarchy" description="Opens a type hierarchy for the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A36nffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.oclinecore.ui.commands.SetExportDelegateURICommand_Virtual" commandName="Set Virtual Export Delegate URI Command" description="Specify the virtual Delegate URI to be used when saving to Ecore" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A363ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.navigate.gotopackage" commandName="Go to Folder" description="Go to Folder" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A37HffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.breakpoint.properties" commandName="Breakpoint Properties..." description="Modify breakpoint properties" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A37XffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.command.synchronizedDiagram" commandName="Synchronized Diagram" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A37nffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A373ffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.closeAllSaved" commandName="Close All Saved" description="Close all saved editors" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A38HffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.editor.hyperlinking.OpenDeclaration" commandName="Open Declaration" description="Opens the declaration for the currently selected cross reference" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A38XffEemHMbmgLRRGog" elementId="org.eclipse.wst.server.launchShortcut.run" commandName="Run on Server" description="Run the current selection on a server" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A38nffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.inner.to.top.level" commandName="Convert Member Type to Top Level" description="Convert member type to top level" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A383ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.redo" commandName="Redo" description="Redo the last operation" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A39HffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.codetemplates.Codetemplates.validate" commandName="Validate" description="Trigger expensive validation" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A39XffEemHMbmgLRRGog" elementId="org.eclipse.wst.server.launchShortcut.debug" commandName="Debug on Server" description="Debug the current selection on a server" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A39nffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.selectWorkingSets" commandName="Select Working Sets" description="Select the working sets that are applicable for this window." category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A393ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3-HffEemHMbmgLRRGog" elementId="org.eclipse.pde.api.tools.ui.remove.filters" commandName="Remove &API Problem Filters..." description="Remove API problem filters for this project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3-XffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3-nffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3-3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.CherryPick" commandName="Cherry Pick" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3_HffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.close" commandName="Close" description="Close the active editor" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3_XffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.historybrowserview.addtag" commandName="AddTag" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3_nffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A3_3ffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.updateAll" commandName="Update All Incoming Changes" description="Update all incoming changes with new content from the repository" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4AHffEemHMbmgLRRGog" elementId="org.eclipse.xtext.xbase.ui.refactoring.ExtractLocalVariable" commandName="Extract Local Variable" description="Replaces the given expression with a newly declared local variable" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4AXffEemHMbmgLRRGog" 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="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4AnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.Reset" commandName="Reset..." category="_e6BeP3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A4A3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.ResetMode" name="Reset mode" optional="false"/>
</commands>
<commands xmi:id="_e6A4BHffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.previousSubTab" commandName="Previous Sub-Tab" description="Switch to the previous sub-tab" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4BXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.testing.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4BnffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4B3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.showIn" commandName="Show In" category="_e6BeR3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A4CHffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.showIn.targetId" name="Show In Target Id" optional="false"/>
</commands>
<commands xmi:id="_e6A4CXffEemHMbmgLRRGog" elementId="sed.tabletree.collapseAll" commandName="Collapse All" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4CnffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.addLocation" commandName="Add Repository Location" description="Add a new CVS repository location" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4C3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewRemoveRemote" commandName="Delete Remote" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4DHffEemHMbmgLRRGog" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_e6BeOHffEemHMbmgLRRGog">
<parameters xmi:id="_e6A4DXffEemHMbmgLRRGog" elementId="title" name="Title"/>
<parameters xmi:id="_e6A4DnffEemHMbmgLRRGog" elementId="message" name="Message"/>
<parameters xmi:id="_e6A4D3ffEemHMbmgLRRGog" elementId="initialValue" name="Initial Value"/>
<parameters xmi:id="_e6A4EHffEemHMbmgLRRGog" elementId="cancelReturns" name="Return Value on Cancel"/>
</commands>
<commands xmi:id="_e6A4EXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RebaseCurrent" commandName="Rebase" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4EnffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.explorer.ui.RepositoryCheckout" commandName="Checkout Repository" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4E3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4FHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskComplete" commandName="Mark Task Complete" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4FXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.windowStart" commandName="Select Window Start" description="Select to the start of the window" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4FnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4F3ffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4GHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.Revert" commandName="Revert Commit" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4GXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewImportProjects" commandName="Import Projects..." description="Import or create in local Git repository" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4GnffEemHMbmgLRRGog" elementId="org.eclipse.compare.copyAllLeftToRight" commandName="Copy All from Left to Right" description="Copy All Changes from Left to Right" category="_e6BeS3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4G3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.debug.ui.evaluate.command" commandName="Evaluate" description="Evaluates the selected text in the JavaScript editor" category="_e6BeSnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4HHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4HXffEemHMbmgLRRGog" elementId="org.eclipse.search.ui.openFileSearchPage" commandName="File Search" description="Open the Search dialog's file search page" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4HnffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4H3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewAddRepository" commandName="Add a Git Repository" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4IHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.breakpoint.properties" commandName="Java Breakpoint Properties" description="View and edit the properties for a given Java breakpoint" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4IXffEemHMbmgLRRGog" 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="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4InffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.task.clearActiveTime" commandName="Clear Active Time" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4I3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id To Clipboard" description="Copies the build id to the clipboard." category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4JHffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.textEnd" commandName="Select Text End" description="Select to the end of the text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4JXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.context.ui.commands.task.attachContext" commandName="Attach Context" category="_e6BeK3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4JnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.wordPrevious" commandName="Previous Word" description="Go to the previous word" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4J3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.preferences" commandName="Preferences" description="Open the preferences dialog" category="_e6BeMnffEemHMbmgLRRGog">
<parameters xmi:id="_e6A4KHffEemHMbmgLRRGog" elementId="preferencePageId" name="Preference Page"/>
</commands>
<commands xmi:id="_e6A4KXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.commit.Squash" commandName="Squash Commits" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4KnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4K3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.nextView" commandName="Next View" description="Switch to the next view" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4LHffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.base.ui.SaveCSCommand" commandName="Save Concrete (Xtext) Syntax" description="Save the Concrete (Xtext) Syntax representation to an XMI file" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4LXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.debug.ui.commands.ScriptWatch" commandName="Watch" description="Create new watch expression" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4LnffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.workbench.import" commandName="Import Child" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4L3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.revertToSaved" commandName="Revert to Saved" description="Revert to the last saved state" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4MHffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand" commandName="Properties" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4MXffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4MnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4M3ffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.debug" commandName="Debug OSGi Framework" description="Debug OSGi Framework" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4NHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewPaste" commandName="Paste Repository Path or URI" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4NXffEemHMbmgLRRGog" 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="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4NnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.upperCase" commandName="To Upper Case" description="Changes the selection to upper case" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4N3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.ConfigureFetch" commandName="Configure Upstream Fetch" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4OHffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into" description="Navigate into the selected item" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4OXffEemHMbmgLRRGog" elementId="org.eclipse.xtext.xbase.ui.hierarchy.OpenCallHierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4OnffEemHMbmgLRRGog" elementId="org.eclipse.pdt.ui.edit.text.select.next" commandName="Select Next Element" description="Expands selection to include next sibling" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4O3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.ConfigureUpstreamPush" commandName="Configure Upstream Push" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4PHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.OpenRunConfigurations" commandName="Run..." description="Open run launch configuration dialog" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4PXffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.view.model.preview.OpenPreviewCommand" commandName="Open Preview" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4PnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.windowEnd" commandName="Select Window End" description="Select to the end of the window" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4P3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.minimizePart" commandName="Minimize Active View or Editor" description="Minimizes the active view or editor" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4QHffEemHMbmgLRRGog" elementId="org.eclipse.emf.compare.ide.ui.emfComparisonSourceCompareCommand" commandName="Compare EMFComparisonSource" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4QXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Untrack" commandName="Untrack" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4QnffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.add.block.comment" commandName="Add Block Comment" description="Add Block Comment" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4Q3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.showSystemMenu" commandName="Show System Menu" description="Show the system menu" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4RHffEemHMbmgLRRGog" 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="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4RXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4RnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4R3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.savePerspective" commandName="Save Perspective As" description="Save the current perspective" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4SHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.exportProjectSpace" commandName="Export Projectspace" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4SXffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.launchRules" commandName="Launch Rules" description="Launch all rules" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4SnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.use.supertype" commandName="Use Supertype Where Possible" description="Change occurrences of a type to use a supertype instead" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4S3ffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4THffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.command.configureTrace" commandName="Configure Git Debug Trace" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4TXffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.editor.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4TnffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4T3ffEemHMbmgLRRGog" 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="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4UHffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.open.file.from.source" commandName="Open Selection" description="Open an editor on the selected link" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4UXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4UnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode" commandName="Toggle Block Selection" description="Toggle block / column selection in the current text editor" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4U3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.goto.matching.bracket" commandName="Matching Character" description="Go to Matching Character" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4VHffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.edit.text.show.phpdoc" commandName="Show Tooltip Description" description="Shows the tooltip description for the element at the cursor" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4VXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4VnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.CompareIndexWithHead" commandName="Compare File in Index with HEAD Revision" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4V3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.override.methods" commandName="Override/Implement Methods" description="Override or implement methods from super types" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4WHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4WXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.ui.convertToDocbookCommand" commandName="Generate Docbook" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4WnffEemHMbmgLRRGog" elementId="org.eclipse.ui.part.nextPage" commandName="Next Page" description="Switch to the next page" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4W3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.project.filterModelElements" commandName="Filter Modelelements" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4XHffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4XXffEemHMbmgLRRGog" elementId="org.eclipse.pdt.ui.edit.text.select.last" commandName="Restore Last Selection" description="Restores last selection" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4XnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.CompareWithRevision" commandName="Compare with Branch, Tag or Reference..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4X3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.CreateBranch" commandName="Create Branch" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4YHffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.generatejavaservicesmodule" commandName="Generate Java services module" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4YXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4YnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewClone" commandName="Clone a Git Repository" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4Y3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.clear.mark" commandName="Clear Mark" description="Clear the mark" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4ZHffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.quick_outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4ZXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or function" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4ZnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewRemove" commandName="Remove Repository" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4Z3ffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.branch" commandName="Branch" description="Branch" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4aHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.PackagesView" commandName="JavaScript Folders" description="Show the Folders view" category="_e6BeQnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4aXffEemHMbmgLRRGog" elementId="org.eclipse.ant.ui.openExternalDoc" commandName="Open External Documentation" description="Open the External documentation for the current task in the Ant editor" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4anffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewCreateRepository" commandName="Create a Repository" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4a3ffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4bHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.PushTags" commandName="Push Tags..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4bXffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.shared.OpenSourceFileCommand" commandName="Open Source File" description="Open the file from which this file has been generated" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4bnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.ContinueRebase" commandName="Continue Rebase" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4b3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.parsley.dsl.additional.builder.addRemoveEmfParsleyDslPluginXmlNature" commandName="Add/RemoveEmf Parsley Dsl Plugin Xml Nature" category="_e6BeUXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4cHffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.GenerateDiff" commandName="Create Patch" description="Compare your workspace contents with the server and generate a diff file that can be used as a patch file." category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4cXffEemHMbmgLRRGog" 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="_e6BeTnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4cnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.CreatePatch" commandName="Create Patch" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4c3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.AddServer" commandName="Add Server" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4dHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.Resume" commandName="Resume" description="Resume" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4dXffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.commands.showHistory" commandName="Show History" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4dnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4d3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.context.ui.commands.open.context.dialog" commandName="Show Context Quick View" description="Show Context Quick View" category="_e6BeK3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4eHffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.restartWorkbench" commandName="Restart" description="Restart the workbench" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4eXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.project" commandName="Read Access in Project" description="Search for read references to the selected element in the enclosing project" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4enffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.context.ui.commands.attachment.retrieveContext" commandName="Retrieve Context Attachment" category="_e6BeK3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4e3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.toggleOverwrite" commandName="Toggle Overwrite" description="Toggle overwrite mode" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4fHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.updateToVersion" commandName="update to version" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4fXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4fnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.folding.collapse_all" commandName="Collapse All" description="Collapses all folded regions" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4f3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.surround.with.try.catch" commandName="Surround with try/catch Block" description="Surround the selected text with a try/catch block" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4gHffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.cvsPerspective" commandName="CVS Repository Exploring" description="Open the CVS Repository Exploring Perspective" category="_e6BeVXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4gXffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.edit.text.add.objectoperator" commandName="Create Object Operator" description="Dynamically create object operator" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4gnffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.RegisterEPackage" commandName="RegisterEPackage" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4g3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.RefreshRepositoryTasks" commandName="Synchronize Changed" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4hHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.ToggleWatchpoint" commandName="Toggle Watchpoint" description="Creates or removes a watchpoint" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4hXffEemHMbmgLRRGog" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowRepositoryCatalog" commandName="Show Repository Catalog" category="_e6BeP3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A4hnffEemHMbmgLRRGog" elementId="org.eclipse.equinox.p2.ui.discovery.commands.RepositoryParameter" name="P2 Repository URI"/>
</commands>
<commands xmi:id="_e6A4h3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.closeRendering" commandName="Close Rendering" description="Close the selected rendering." category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4iHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewOpenInEditor" commandName="Open in Editor" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4iXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.introduce.parameter" commandName="Introduce Parameter" description="Introduce a new function parameter based on the selected expression" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4inffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.submodule.update" commandName="Update Submodule" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4i3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4jHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.table.ui.exportToCsv" commandName="Export to CSV" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4jXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Pull" commandName="Pull" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4jnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" commandName="JavaScript Type Hierarchy" description="Show the Type Hierarchy view" category="_e6BeQnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4j3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.swap.mark" commandName="Swap Mark" description="Swap the mark with the cursor position" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4kHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4kXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.context.ui.commands.interest.increment" commandName="Make Landmark" description="Make Landmark" category="_e6BeK3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4knffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.javadoc.comment" commandName="Add JSDoc Comment" description="Add a JSDoc comment stub to the member element" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4k3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4lHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.tree.ui.quickoutline" commandName="Tree Editor Quick Outline Command" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4lXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureFetch" commandName="Configure Fetch..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4lnffEemHMbmgLRRGog" elementId="org.eclipse.pde.api.tools.ui.convert.javadocs" commandName="Convert API Tools &Javadoc Tags..." description="Starts a wizard that will allow you to convert existing Javadoc tags to annotations" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4l3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4mHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.exportProject" commandName="Export Project" category="_e6BeW3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4mXffEemHMbmgLRRGog" 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="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4mnffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.run" commandName="Run OSGi Framework" description="Run OSGi Framework" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4m3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.shiftLeft" commandName="Shift Left" description="Shift a block of text to the left" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4nHffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.structure.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4nXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Push" commandName="Push..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4nnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.commands.AddClassPrepareBreakpoint" commandName="Add Class Load Breakpoint" description="Add a class load breakpoint" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4n3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.codegen.ecore.ui.Generate" commandName="Generate Code" description="Generate code for the EMF models in the workspace" category="_e6BeTXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4oHffEemHMbmgLRRGog" elementId="org.eclipse.dltk.testing.testingShortcut.debug" commandName="Debug testing Test" description="Debug testing Test" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4oXffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.oclinecore.OCLinEcore.validate" commandName="Validate" description="Trigger expensive validation" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4onffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.generate.javadoc" commandName="Generate JSDoc" description="Generates JSDoc for a selectable set of JavaScript resources" category="_e6BeT3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4o3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.stash.drop" commandName="Delete Stashed Commit..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4pHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.deleteOnServer" commandName="Delete on Server" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4pXffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.addrepository" commandName="Add Repository" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4pnffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.DebugPerspective" commandName="Debug" description="Open the debug perspective" category="_e6BeVXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4p3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.RenameBranch" commandName="Rename Branch..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4qHffEemHMbmgLRRGog" elementId="org.eclipse.php.refactoring.ui.commands.extractMethod" commandName="Extract Variable" category="_e6BeNHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4qXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4qnffEemHMbmgLRRGog" elementId="org.eclipse.xtext.xbase.ui.OpenImplementationCommand" commandName="Open Implementation" description="Open the Implementations in the method's hierarchy" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4q3ffEemHMbmgLRRGog" 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="_e6BeJ3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A4rHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.specific_content_assist.category_id" name="type" optional="false"/>
</commands>
<commands xmi:id="_e6A4rXffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4rnffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All" description="Expand the current tree" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4r3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.saveAll" commandName="Save All" description="Save all current contents" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4sHffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4sXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4snffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4s3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.projectProperties" commandName="Project Properties" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4tHffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.closeOthers" commandName="Close Others" description="Close all editors except the one that is active" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4tXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4tnffEemHMbmgLRRGog" elementId="org.eclipse.ui.editors.quickdiff.revertLine" commandName="Revert Line" description="Revert the current line" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4t3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.OpenDebugConfigurations" commandName="Debug..." description="Open debug launch configuration dialog" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4uHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.exportChanges" commandName="Export Changes" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4uXffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.ImportProjectHistory" commandName="ImportProject History" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4unffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.SimpleFetch" commandName="Fetch from Upstream" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4u3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.previousEditor" commandName="Previous Editor" description="Switch to the previous editor" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4vHffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4vXffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4vnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.zoomIn" commandName="Zoom In" description="Zoom in text, increase default font size for text editors" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4v3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.ide.OpenMarkersView" commandName="Open Another" description="Open another view" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4wHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" commandName="JavaScript Script Explorer" description="Show the Script Explorer" category="_e6BeQnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4wXffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.oclstdlib.OCLstdlib.validate" commandName="Validate" description="Trigger expensive validation" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4wnffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.edit.text.php.open.manual" commandName="Open manual" description="Open function manual in an internal web browser" category="_e6BePXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4w3ffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4xHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.newRendering" commandName="New Rendering" description="Add a new rendering." category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4xXffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.checkout" commandName="Checkout" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4xnffEemHMbmgLRRGog" elementId="org.eclipse.ui.project.closeUnrelatedProjects" commandName="Close Unrelated Projects" description="Close unrelated projects" category="_e6BeT3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4x3ffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4yHffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.run" commandName="Run Eclipse Application" description="Run Eclipse Application" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4yXffEemHMbmgLRRGog" elementId="org.eclipse.search.ui.performTextSearchWorkspace" commandName="Find Text in Workspace" description="Searches the files in the workspace for specific text." category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4ynffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.configure.antStandAlone" commandName="Create Ant file for headless build." category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4y3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.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="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4zHffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.remove.block.comment" commandName="Remove Block Comment" description="Remove Block Comment" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4zXffEemHMbmgLRRGog" elementId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand" commandName="Plug-in Menu Spy" description="Show the Plug-in Spy" category="_e6BeWnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4znffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="%toggleMarkOccurrences.description" category="_e6BeQ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4z3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.generate.constructor.using.fields" commandName="Generate Constructor using Vars" description="Choose vars to initialize and constructor from superclass to call " category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A40HffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A40XffEemHMbmgLRRGog" elementId="org.eclipse.sirius.common.acceleo.mtl.ide.internal.convert" commandName="Convert to Acceleo project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A40nffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark" description="Add a bookmark" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A403ffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.commit" commandName="Commit" description="Commit resources to the repository" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A41HffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.setKeywordSubstitution" commandName="Change ASCII/Binary Property" description="Change whether the selected resources should be treated as ASCII or binary on the CVS Server" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A41XffEemHMbmgLRRGog" elementId="org.eclipse.wst.xsd.ui.refactor.rename.element" commandName="&Rename XSD element" description="Rename XSD element" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A41nffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.set.mark" commandName="Set Mark" description="Set the mark" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A413ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.goToPreviousUnread" commandName="Go To Previous Unread Task" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A42HffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A42XffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A42nffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView" commandName="Show View" description="Shows a particular view" category="_e6BeQnffEemHMbmgLRRGog">
<parameters xmi:id="_e6A423ffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.viewId" name="View"/>
<parameters xmi:id="_e6A43HffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.secondaryId" name="Secondary Id"/>
<parameters xmi:id="_e6A43XffEemHMbmgLRRGog" elementId="org.eclipse.ui.views.showView.makeFast" name="As FastView"/>
</commands>
<commands xmi:id="_e6A43nffEemHMbmgLRRGog" elementId="org.eclipse.php.deubg.ui.phpexeShortcut.debug" commandName="Debug CLI Application" description="Debug CLI Application" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A433ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Ignore" commandName="Ignore" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A44HffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.commit.Edit" commandName="Edit Commit" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A44XffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.showResourceByPath" commandName="Show Resource in Navigator" description="Show a resource in the Navigator given its path" category="_e6BeR3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A44nffEemHMbmgLRRGog" elementId="resourcePath" name="Resource Path" typeId="org.eclipse.ui.ide.resourcePath" optional="false"/>
</commands>
<commands xmi:id="_e6A443ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.SkipAllBreakpoints" commandName="Skip All Breakpoints" description="Sets whether or not any breakpoint should suspend execution" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A45HffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.delimiter.windows" commandName="Convert Line Delimiters to Windows (CRLF, \r\n, 0D0A, ¤¶)" description="Converts the line delimiters to Windows (CRLF, \r\n, 0D0A, ¤¶)" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A45XffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.findNext" commandName="Find Next" description="Find next item" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A45nffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.hidetrimbars" commandName="Toggle visibility of the window toolbars" description="Toggle the visibility of the toolbars of the current window" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A453ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.workspace" commandName="Declaration in Workspace" description="Search for declarations of the selected element in the workspace" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A46HffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.oclinecore.ui.outline.SaveAsPivotCommand" commandName="Save As Pivot Command" description="Save file changing format to Pivot" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A46XffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.checkout" commandName="Checkout from CVS" description="Checkout from CVS" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A46nffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A463ffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.openPluginArtifact" commandName="Open Plug-in Artifact" description="Open a plug-in artifact in the manifest editor" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A47HffEemHMbmgLRRGog" elementId="org.eclipse.wst.server.debug" commandName="Debug" description="Debug server" category="_e6BeL3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A47XffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.nextSubTab" commandName="Next Sub-Tab" description="Switch to the next sub-tab" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A47nffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A473ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.addTaskRepository" commandName="Add Task Repository..." category="_e6BeLnffEemHMbmgLRRGog">
<parameters xmi:id="_e6A48HffEemHMbmgLRRGog" elementId="connectorKind" name="Repository Type"/>
</commands>
<commands xmi:id="_e6A48XffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.run" commandName="Run Java Application" description="Run Java Application" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A48nffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.addTask" commandName="Add Task..." description="Add a task" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A483ffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.structure.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A49HffEemHMbmgLRRGog" elementId="org.eclipse.ui.cheatsheets.openCheatSheet" commandName="Open Cheat Sheet" description="Open a Cheat Sheet." category="_e6BeTnffEemHMbmgLRRGog">
<parameters xmi:id="_e6A49XffEemHMbmgLRRGog" elementId="cheatSheetId" name="Identifier"/>
</commands>
<commands xmi:id="_e6A49nffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.viewSource.command" commandName="View Unformatted Text" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A493ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4-HffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.SourceView" commandName="JavaScript Declaration" description="Show the Declaration view" category="_e6BeQnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4-XffEemHMbmgLRRGog" elementId="org.eclipse.equinox.p2.ui.sdk.update" commandName="Check for Updates" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4-nffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.searchTargetRepositories" commandName="Add Artifact to Target Platform" description="Add an artifact to your target platform" category="_e6BeP3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A4-3ffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.searchTargetRepositories.term" name="The initial search pattern for the artifact search dialog"/>
</commands>
<commands xmi:id="_e6A4_HffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.textEnd" commandName="Text End" description="Go to the end of the text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4_XffEemHMbmgLRRGog" 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="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4_nffEemHMbmgLRRGog" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A4_3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.override.methods" commandName="Override/Implement Functions" description="Override or implement functions from super types" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5AHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.createBranch" commandName="create branch" category="_e6BeW3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5AXffEemHMbmgLRRGog" elementId="org.eclipse.ui.project.closeProject" commandName="Close Project" description="Close the selected project" category="_e6BeT3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5AnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.PullWithOptions" commandName="Pull..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5A3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5BHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5BXffEemHMbmgLRRGog" elementId="org.eclipse.wst.server.publish" commandName="Publish" description="Publish to server" category="_e6BeL3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5BnffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5B3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.navigate.open.type" commandName="Open Type" description="Open a type in a DLTK editor" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5CHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.update" commandName="update" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5CXffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.updateClasspath" commandName="Update Classpath" description="Updates the plug-in classpath from latest settings" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5CnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.commit.CherryPick" commandName="Cherry Pick" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5C3ffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5DHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskUnread" commandName="Mark Task Unread" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5DXffEemHMbmgLRRGog" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5DnffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.structure.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5D3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.properties.project" commandName="Project Properties" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5EHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5EXffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.navigate.open.type" commandName="Open Type" description="Opens a type in a PHP editor" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5EnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.cut.line" commandName="Cut Line" description="Cut a line of text, or multiple lines when invoked again without interruption" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5E3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.folding.expand_all" commandName="Expand All" description="Expands all folded regions" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5FHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.commands.showElementInPackageView" commandName="Show JavaScript Element in Script Explorer" description="Select JavaScript element in the Script Explorer view" category="_e6BeR3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6A5FXffEemHMbmgLRRGog" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_e6A5FnffEemHMbmgLRRGog" elementId="org.eclipse.wst.xsd.ui.refactor.makeElementGlobal" commandName="Make Local Element &Global" description="Promotes local element to global level and replaces its references" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5F3ffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5GHffEemHMbmgLRRGog" elementId="org.eclipse.oomph.setup.editor.openEditorDropdown" commandName="Open Setup Editor" category="_e6BeRnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5GXffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.edit.text.move.element" commandName="Move - Refactoring " description="Moves the selected element to a new location" category="_e6BeNHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5GnffEemHMbmgLRRGog" elementId="org.eclipse.ui.help.quickStartAction" commandName="Welcome" description="Show help for beginning users" category="_e6BeTnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5G3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.mylyn.editor.folding.auto" commandName="Toggle Active Folding" description="Toggle Active Folding" category="_e6BeKnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5HHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.ReplaceWithPrevious" commandName="Replace with Previous Revision" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5HXffEemHMbmgLRRGog" elementId="org.eclipse.oomph.setup.ui.questionnaire" commandName="Configuration Questionnaire" description="Review the IDE's most fiercely contested preferences" category="_e6BeRnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5HnffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.hideShowEditors" commandName="Toggle Shared Area Visibility" description="Toggles the visibility of the shared area" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5H3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.folding.restore" commandName="Reset Structure" description="Resets the folding structure" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5IHffEemHMbmgLRRGog" elementId="org.eclipse.help.ui.indexcommand" commandName="Index" description="Show Keyword Index" category="_e6BeTnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5IXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_e6BeXXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5InffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5I3ffEemHMbmgLRRGog" elementId="org.eclipse.pde.api.tools.ui.setup.projects" commandName="API &Tools Setup..." description="Configure projects for API usage and compatibility checks" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5JHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.create.delegate.methods" commandName="Generate Delegate Functions" description="Add delegate functions for a type's vars" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5JXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.debug" commandName="Debug Java Application" description="Debug Java Application" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5JnffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.forward" commandName="Forward" description="Navigate forward" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5J3ffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.tag" commandName="Tag as Version" description="Tag the resources with a CVS version tag" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5KHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.wizards.newModelElementWizard" commandName="New Model Element" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5KXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5KnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.DeleteTag" commandName="&Delete Tag" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5K3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5LHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.revertAllOperations" commandName="Revert" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5LXffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor" description="Pin the current editor" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6A5LnffEemHMbmgLRRGog" elementId="org.eclipse.dltk.testing.testingShortcut.rerunLast" commandName="Rerun testing Test" description="Rerun testing Test" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb8HffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.in.package.view" commandName="Show in Script Explorer" description="Show the selected element in the Script Explorer" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb8XffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.undoLastOperation" commandName="Undo" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb8nffEemHMbmgLRRGog" elementId="org.eclipse.ocl.examples.xtext.console.ShowEcoreConsoleAction" commandName="Show Xtext &OCL Console" description="%_UI_ShowOCLConsole_tooltip" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb83ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.pageUp" commandName="Page Up" description="Go up one page" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb9HffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.submodule.sync" commandName="Sync Submodule" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb9XffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.DeleteBranch" commandName="Delete Branch" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb9nffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.columnPrevious" commandName="Previous Column" description="Go to the previous column" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb93ffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.hideElement" commandName="Hide element" description="Hide the element" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb-HffEemHMbmgLRRGog" elementId="org.eclipse.compare.selectNextChange" commandName="Select Next Change" description="Select Next Change" category="_e6BeS3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb-XffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_e6BeQ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb-nffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.splitJoinVariableDeclaration.assist" commandName="Quick Assist - Split/Join variable declaration" description="Invokes quick assist and selects 'Split/Join variable declaration'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb-3ffEemHMbmgLRRGog" elementId="org.eclipse.gmf.runtime.diagram.ui.providers.duplicateNode" commandName="Duplicate" description="Duplicates the selection." category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb_HffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.assignParamToField.assist" commandName="Quick Assist - Assign parameter to var" description="Invokes quick assist and selects 'Assign parameter to var'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb_XffEemHMbmgLRRGog" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource" commandName="Rename Resource" description="Rename the selected resource and notify LTK participants." category="_e6BeVnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb_nffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.importFromRepository" commandName="Import Plug-in from a Repository" description="Imports a plug-in from a source repository" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bb_3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Rebase" commandName="Rebase on" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcAHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.commit.ShowInHistory" commandName="Show in History" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcAXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.previousTask" commandName="Previous Task Command" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcAnffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.properties" commandName="Properties" description="Display the properties of the selected item" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcA3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.copy.qualified.name" commandName="Copy Qualified Name" description="Copy a fully qualified name to the system clipboard" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcBHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.ReplaceWithHead" commandName="Replace with HEAD revision" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcBXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcBnffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.pinElementsCommand" commandName="Pin elements" description="Mark diagram elements as pinned" category="_e6BeOnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcB3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.properties.repository" commandName="Repository Properties" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcCHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.hierarchy" commandName="References in Hierarchy" description="Search for references of the selected element in its hierarchy" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcCXffEemHMbmgLRRGog" elementId="org.eclipse.ui.activeContextInfo" commandName="Show activeContext Info" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcCnffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.extractAsTemplate" commandName="Extract Template..." description="Extract the selected text as a new template" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcC3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskReadGoToPreviousUnread" commandName="Mark Task Read and Go To Previous Unread Task" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcDHffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.edit.text.php.open.call.hierarchy" commandName="Open Call Hierarchy" description="Opens a call hierarchy for the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcDXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcDnffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcD3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.textStart" commandName="Select Text Start" description="Select to the beginning of the text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcEHffEemHMbmgLRRGog" elementId="org.eclipse.php.refactoring.ui.commands.extractVariable" commandName="Extract Variable" category="_e6BeNHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcEXffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.cleanup.document" commandName="Cleanup Document..." description="Cleanup document" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcEnffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.view.editor.controls.migrate" commandName="Migrate" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcE3ffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.refactoring.RenameElement" commandName="Rename Element" description="Performs a rename refactoring on the selected element" category="_e6BeXHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcFHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.ConfigurePush" commandName="Configure Upstream Push" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcFXffEemHMbmgLRRGog" elementId="org.eclipse.pdt.ui.edit.text.select.enclosing" commandName="Select Enclosing Element" description="Expands selection to include enclosing element" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcFnffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.DeleteProjectOnServer" commandName="Delete Project On Server" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcF3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.command.nextpage" commandName="Next Page of Memory" description="Load next page of memory" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcGHffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.explorer.ui.RepositoryCheckoutQuick" commandName="Checkout Repository Quick" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcGXffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.command.gotoaddress" commandName="Go to Address" description="Go to Address" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcGnffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.maximizePart" commandName="Maximize Active View or Editor" description="Toggles maximize/restore state of active view or editor" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcG3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.navigate.script.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcHHffEemHMbmgLRRGog" elementId="org.eclipse.amalgam.discovery.modeling.commands.discoveryCommand" commandName="Install Modeling Components" category="_e6BeVHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcHXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcHnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify field access" description="Invokes quick assist and selects 'Qualify field access'" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcH3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.newEditor" commandName="New Editor" description="Open another editor on the active editor's input" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcIHffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.format" commandName="Format" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcIXffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.explorer.ui.CheckoutDuplicate" commandName="Duplicate Checkout" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcInffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.command.showLabel" commandName="Show label" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcI3ffEemHMbmgLRRGog" elementId="org.eclipse.search.ui.openSearchDialog" commandName="Open Search Dialog" description="Open the Search dialog" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcJHffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.contentAssist.proposals" commandName="Content Assist" description="Content Assist" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcJXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.externalize.strings" commandName="Externalize Strings" description="Finds all strings that are not externalized and moves them into a separate property file" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcJnffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.up" commandName="Up" description="Navigate up one level" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcJ3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.activateEditor" commandName="Activate Editor" description="Activate the editor" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcKHffEemHMbmgLRRGog" elementId="sed.tabletree.expandAll" commandName="Expand All" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcKXffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcKnffEemHMbmgLRRGog" 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="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcK3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.commit.CreateBranch" commandName="Create Branch..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcLHffEemHMbmgLRRGog" elementId="org.eclipse.amalgam.explorer.contextual.command.SelectInCurrentEditorHandler" commandName="Select in open editor" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcLXffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcLnffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.Terminate" commandName="Terminate" description="Terminate" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcL3ffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.createForIf" commandName="As For/If..." description="Transform the selected text as a "For/If" block" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcMHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.ShowRepositoriesView" commandName="Show Git Repositories View" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcMXffEemHMbmgLRRGog" 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="_e6BeTnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcMnffEemHMbmgLRRGog" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_e6BeS3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcM3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.external.javadoc" commandName="Open External JSDoc" description="Open the JSDoc of the selected element in an external browser" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcNHffEemHMbmgLRRGog" elementId="org.eclipse.ocl.examples.interpreter.ShowEcoreConsoleAction" commandName="Show &OCL Console" description="Show &OCL Console" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcNXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.CreatePatch" commandName="Create Patch" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcNnffEemHMbmgLRRGog" elementId="org.eclipse.ui.editors.revisions.author.toggle" commandName="Toggle Revision Author Display" description="Toggles the display of the revision author" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcN3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.windowEnd" commandName="Window End" description="Go to the end of the window" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcOHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.command.revealAllElements" commandName="Reveal all elements" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcOXffEemHMbmgLRRGog" elementId="org.eclipse.ui.perspectives.showPerspective" commandName="Show Perspective" description="Show a particular perspective" category="_e6BeVXffEemHMbmgLRRGog">
<parameters xmi:id="_e6BcOnffEemHMbmgLRRGog" elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId" name="Parameter"/>
<parameters xmi:id="_e6BcO3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.perspectives.showPerspective.newWindow" name="In New Window"/>
</commands>
<commands xmi:id="_e6BcPHffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.ui.LockObject" commandName="Lock Object" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcPXffEemHMbmgLRRGog" elementId="org.eclipse.emf.parsley.dsl.EmfParsleyDsl.validate" commandName="Validate" description="Trigger expensive validation" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcPnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.line" commandName="Go to Line" description="Go to a specified line of text" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcP3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.editors.quickdiff.revert" commandName="Revert Lines" description="Revert the current selection, block or deleted lines" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcQHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implement.occurrences" commandName="Search Implement Occurrences in File" description="Search for implement occurrences of a selected type" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcQXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.debug" commandName="Debug Java Applet" description="Debug Java Applet" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcQnffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.ServerProperties" commandName="Server Properties" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcQ3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.ui.gotoMatchingTag" commandName="Matching Tag" description="Go to Matching Tag" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcRHffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcRXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.specific_content_assist.command" commandName="Content Assist(DLTK)" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_e6BeJ3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6BcRnffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.specific_content_assist.category_id" name="type" optional="false"/>
</commands>
<commands xmi:id="_e6BcR3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcSHffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.oclinecore.ui.outline.SaveAsUMLCommand" commandName="Save As UML Command" description="Save file changing format to UML" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcSXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.submodule.add" commandName="Add Submodule" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcSnffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.view.model.editor.project.CreateProjectCommand" commandName="Create View Model Project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcS3ffEemHMbmgLRRGog" 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="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcTHffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcTXffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.markup.Markup.validate" commandName="Validate" description="Trigger expensive validation" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcTnffEemHMbmgLRRGog" elementId="org.eclipse.compare.copyLeftToRight" commandName="Copy from Left to Right" description="Copy Current Change from Left to Right" category="_e6BeS3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcT3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_e6BeT3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcUHffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.oclinecore.ui.outline.SaveAsEcoreCommand" commandName="Save As Ecore Command" description="Save file changing to Ecore (String changes to EString)" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcUXffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.explorer" commandName="PHP Script Explorer" description="Shows the Script Explorer" category="_e6BeQnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcUnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.ShowBlame" commandName="Show Annotations" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcU3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.historybrowserview.checkout" commandName="CheckoutRevision" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcVHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.org.eclipse.egit.ui.AbortRebase" commandName="Abort Rebase" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcVXffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.createProtectedArea" commandName="As Protected Area..." description="Transform the selected text as a protected area" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcVnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcV3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcWHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.CreateProjectOnServer" commandName="Create Project On Server" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcWXffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcWnffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcW3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.project.properties" commandName="Properties" description="Display the properties of the selected item's project " category="_e6BeT3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcXHffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.edit.text.toggleMarkOccurrences" commandName="Mark Occurrences" description="Toggles mark occurrences in PHP editors" category="_e6BePXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcXXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.CompareVersionsInTree" commandName="Compare in Tree" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcXnffEemHMbmgLRRGog" elementId="org.eclipse.dltk.testing.ResultView" commandName="DLTK Testing" description="Testing" category="_e6BeQnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcX3ffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.shared.OpenXtextElementCommand" commandName="Open Model Element" description="Open the declaration of an Xtext element" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcYHffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.columnPrevious" commandName="Select Previous Column" description="Select the previous column" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcYXffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.debug" commandName="Debug JUnit Plug-in Test" description="Debug JUnit Plug-in Test" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcYnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.correction.extractLocalNotReplaceOccurrences.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcY3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.debug.ui.commands.ScriptDisplay" commandName="Display" description="Display result of evaluating selected text" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcZHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchHierarchy" commandName="Toggle Branch Representation" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcZXffEemHMbmgLRRGog" elementId="org.eclipse.ltk.ui.refactoring.commands.deleteResources" commandName="Delete Resources" description="Delete the selected resources and notify LTK participants." category="_e6BeVnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcZnffEemHMbmgLRRGog" elementId="org.eclipse.ui.file.print" commandName="Print" description="Print" category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcZ3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.uncomment" commandName="Uncomment" description="Uncomment the selected DLTK comment lines" category="_e6BeQ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcaHffEemHMbmgLRRGog" elementId="org.eclipse.php.deubg.ui.phpexeShortcut.run" commandName="Run CLI Application" description="Run CLI Application" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcaXffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.emfserverCreateRemoteProject" commandName="Create Remote Project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcanffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.commands.AllReferences" commandName="All References" description="Inspect all references to the selected object" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bca3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.junit.junitShortcut.rerunLast" commandName="Rerun JUnit Test" description="Rerun JUnit Test" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcbHffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.format.active.elements" commandName="Format Active Elements" description="Format active elements" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcbXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.showRulerContextMenu" commandName="Show Ruler Context Menu" description="Show the context menu for the ruler" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcbnffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.search.modelelement" commandName="Search Model Element" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcb3ffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BccHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.task.clearOutgoing" commandName="Clear Outgoing Changes" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BccXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.folding.collapse" commandName="Collapse" description="Collapses the folded region at the current selection" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BccnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.smartEnterInverse" commandName="Insert Line Above Current Line" description="Adds a new line above the current line" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcc3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.spy" commandName="Show Contributing Plug-in" description="Shows contribution information for the currently selected element" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcdHffEemHMbmgLRRGog" elementId="org.eclipse.ui.help.helpSearch" commandName="Help Search" description="Open the help search" category="_e6BeTnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcdXffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcdnffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.open.declaration" commandName="Open Declaration" description="Open Declaration of the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcd3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.lineDown" commandName="Line Down" description="Go down one line of text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BceHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.commit.Checkout" commandName="Checkout" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BceXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition" commandName="Last Edit Location" description="Last edit location" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcenffEemHMbmgLRRGog" 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="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bce3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.ui.convertToEclipseHelpCommand" commandName="Generate Eclipse Help (*.html and *-toc.xml)" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcfHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.exception.occurrences" commandName="Search Exception Occurrences in File" description="Search for exception occurrences of a selected exception type" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcfXffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.command.prevpage" commandName="Previous Page of Memory" description="Load previous page of memory" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcfnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.commands.ForceReturn" commandName="Force Return" description="Forces return from method with value of selected expression " category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcf3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.ide.configureFilters" commandName="Configure Contents..." description="Configure the filters to apply to the markers view" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcgHffEemHMbmgLRRGog" elementId="org.eclipse.ocl.xtext.oclinecore.ui.commands.SetExportDelegateURICommand_LPG" commandName="Set LPG Export Delegate URI Command" description="Specify use of the LPG Delegate URI to be used when saving to Ecore" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcgXffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.view.editor.controls.unsetRootEclass" commandName="Unset Root EClass" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcgnffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.previousTab" commandName="Previous Tab" description="Switch to the previous tab" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcg3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.hierarchy" commandName="Declaration in Hierarchy" description="Search for declarations of the selected element in its hierarchy" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BchHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.emfserverLogin" commandName="Login" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BchXffEemHMbmgLRRGog" elementId="org.eclipse.ui.dialogs.openMessageDialog" commandName="Open Message Dialog" description="Open a Message Dialog" category="_e6BeOHffEemHMbmgLRRGog">
<parameters xmi:id="_e6BchnffEemHMbmgLRRGog" elementId="title" name="Title"/>
<parameters xmi:id="_e6Bch3ffEemHMbmgLRRGog" elementId="message" name="Message"/>
<parameters xmi:id="_e6BciHffEemHMbmgLRRGog" elementId="imageType" name="Image Type Constant" typeId="org.eclipse.ui.dialogs.Integer"/>
<parameters xmi:id="_e6BciXffEemHMbmgLRRGog" elementId="defaultIndex" name="Default Button Index" typeId="org.eclipse.ui.dialogs.Integer"/>
<parameters xmi:id="_e6BcinffEemHMbmgLRRGog" elementId="buttonLabel0" name="First Button Label"/>
<parameters xmi:id="_e6Bci3ffEemHMbmgLRRGog" elementId="buttonLabel1" name="Second Button Label"/>
<parameters xmi:id="_e6BcjHffEemHMbmgLRRGog" elementId="buttonLabel2" name="Third Button Label"/>
<parameters xmi:id="_e6BcjXffEemHMbmgLRRGog" elementId="buttonLabel3" name="Fourth Button Label"/>
<parameters xmi:id="_e6BcjnffEemHMbmgLRRGog" elementId="cancelReturns" name="Return Value on Cancel"/>
</commands>
<commands xmi:id="_e6Bcj3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.lineEnd" commandName="Line End" description="Go to the end of the line of text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BckHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.commit.CreateTag" commandName="Create Tag..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BckXffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.explorer.ui.RepositoryConnect" commandName="Connect Repository" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcknffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.method" commandName="Extract Function" description="Extract a set of statements or an expression into a new function and use the new function" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bck3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.ui.referencedFileErrors" commandName="Show Details..." description="Show Details..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BclHffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.explorer.ui.WorkspaceUpdate" commandName="Update Workspace" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BclXffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.RunLast" commandName="Run" description="Launch in run mode" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BclnffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.add" commandName="Add to Version Control" description="Add the Selected Resources to Version Control" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcl3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.externalTools.commands.OpenExternalToolsConfigurations" commandName="External Tools..." description="Open external tools launch configuration dialog" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcmHffEemHMbmgLRRGog" elementId="org.eclipse.xtext.xbase.ui.organizeImports" commandName="Organize Imports" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcmXffEemHMbmgLRRGog" 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="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcmnffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.internationalize" commandName="Internationalize Plug-ins" description="Sets up internationalization for a plug-in" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcm3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.deletePrevious" commandName="Delete Previous" description="Delete the previous character" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcnHffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.branchCreate" commandName="create branch" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcnXffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.configure.pom" commandName="Create pom.xml, feature and update site." category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcnnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.CompareWithPrevious" commandName="Compare with Previous Revision" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcn3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.select.columnNext" commandName="Select Next Column" description="Select the next column" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcoHffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.commitProject" commandName="commit" category="_e6BeW3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcoXffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BconffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.workspace" commandName="Implementors in Workspace" description="Search for implementors of the selected interface" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bco3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.TerminateAndRelaunch" commandName="Terminate and Relaunch" description="Terminate and Relaunch" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcpHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.JavaHierarchyPerspective" commandName="Java Type Hierarchy" description="Show the Java Type Hierarchy perspective" category="_e6BeVXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcpXffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.replace" commandName="Replace With Latest from Repository" description="Replace with last committed content from CVS Server" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcpnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.project" commandName="Declaration in Project" description="Search for declarations of the selected element in the enclosing project" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcp3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.export.project" commandName="Export Project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcqHffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcqXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Tag" commandName="Tag" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcqnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.NoAssumeUnchanged" commandName="No Assume Unchanged" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcq3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.JavadocView" commandName="Documentation" description="Show the JavaScript Documentation view" category="_e6BeQnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcrHffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.editor.outline.QuickOutline" commandName="Quick Outline" description="Open the quick outline." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcrXffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.ToggleCommentAction" commandName="Toggle Comment" description="Toggle Comment" category="_e6BeU3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcrnffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.RemoveAllBreakpoints" commandName="Remove All Breakpoints" description="Removes all breakpoints" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcr3ffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.command.deleteFromDiagram" commandName="Delete From Diagram" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcsHffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigator.resources.nested.changeProjectPresentation" commandName="P&rojects Presentation" category="_e6BeP3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6BcsXffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigator.resources.nested.enabled" name="&Hierarchical"/>
<parameters xmi:id="_e6BcsnffEemHMbmgLRRGog" elementId="org.eclipse.ui.commands.radioStateParameter" name="Nested Project view - Radio State" optional="false"/>
</commands>
<commands xmi:id="_e6Bcs3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.showKeyAssist" commandName="Show Key Assist" description="Show the key assist dialog" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BctHffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BctXffEemHMbmgLRRGog" elementId="org.eclipse.gef.zoom_out" commandName="Zoom Out" description="Zoom Out" category="_e6BeV3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BctnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.commands.openElementInEditor" commandName="Open Java Element" description="Open a Java element in its editor" category="_e6BeR3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6Bct3ffEemHMbmgLRRGog" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_e6BcuHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected JavaScript comment lines" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcuXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.AddToIndex" commandName="Add to Index" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcunffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.discovery.ui.discoveryWizardCommand" commandName="Discovery Wizard" description="shows the connector discovery wizard" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcu3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.working.set" commandName="Read Access in Working Set" description="Search for read references to the selected element in a working set" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcvHffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.toggle.comment" commandName="Toggle Comment" description="Toggle Comment" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcvXffEemHMbmgLRRGog" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_e6BeTnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcvnffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcv3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.smartEnter" commandName="Insert Line Below Current Line" description="Adds a new line below the current line" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcwHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcwXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.goto.lineStart" commandName="Line Start" description="Go to the start of the line of text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcwnffEemHMbmgLRRGog" elementId="org.eclipse.oomph.setup.editor.synchronizePreferences" commandName="Synchronize Preferences" category="_e6BeRnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcw3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.xml.ui.cmnd.contentmodel.sych" commandName="Synch" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcxHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureBranch" commandName="Configure Branch" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcxXffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.Suspend" commandName="Suspend" description="Suspend" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcxnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.hippieCompletion" commandName="Word Completion" description="Context insensitive completion" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcx3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.xsd.ui.refactor.renameTargetNamespace" commandName="Rename Target Namespace" description="Changes the target namespace of the schema" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcyHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcyXffEemHMbmgLRRGog" elementId="org.eclipse.team.ui.synchronizeLast" commandName="Repeat last synchronization" description="Repeat the last synchronization" category="_e6BeQXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcynffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.generate.javadoc" commandName="Generate Javadoc" description="Generates Javadoc for a selectable set of Java resources" category="_e6BeT3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcy3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureGerritRemote" commandName="Gerrit Configuration..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BczHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.commands.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BczXffEemHMbmgLRRGog" elementId="org.eclipse.ui.ide.configureColumns" commandName="Configure Columns..." description="Configure the columns in the markers view" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BcznffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.ReplaceWithCommit" commandName="Replace with commit" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bcz3ffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Opens a type in the type hierarchy view" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc0HffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.DebugLast" commandName="Debug" description="Launch in debug mode" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc0XffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.ui.convertToHtmlCommand" commandName="Generate HTML" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc0nffEemHMbmgLRRGog" elementId="org.eclipse.emfforms.editor.new" commandName="New Child Element" category="_e6BeNXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc03ffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.GotToMatchingBracketAction" commandName="Go to Matching Bracket" description="Go to Matching Bracket" category="_e6BeU3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc1HffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.format" commandName="Format" description="Format the selected text" category="_e6BeQ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc1XffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.openManifest" commandName="Open Manifest" description="Open the plug-in manifest" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc1nffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.previousView" commandName="Previous View" description="Switch to the previous view" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc13ffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.replaceWithBase" commandName="Revert to Base" description="Revert to Base revisions" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc2HffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.self.encapsulate.field" commandName="Encapsulate Var" description="Create getting and setting functions for the var and use only those to access the var" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc2XffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.generate.tostring" commandName="Generate toString()" description="Generates the toString() method for the type" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc2nffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc23ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.DropToFrame" commandName="Drop to Frame" description="Drop to Frame" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc3HffEemHMbmgLRRGog" elementId="org.eclipse.php.debug.ui.addExceptionBreakpoint" commandName="Add PHP Exception Breakpoint" description="Add PHP Exception Breakpoint" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc3XffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.promote.local.variable" commandName="Convert Local Variable to Var" description="Convert a local variable to a var" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc3nffEemHMbmgLRRGog" elementId="org.eclipse.pde.api.tools.ui.compare.to.baseline" commandName="API Baseline..." description="Allows to compare the selected resource with the current baseline" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc33ffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.imagebrowser.saveToWorkspace" commandName="Save Image" description="Save the selected image into a project in the workspace" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc4HffEemHMbmgLRRGog" elementId="org.eclipse.jdt.debug.ui.commands.Display" commandName="Display" description="Display result of evaluating selected text" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc4XffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc4nffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.ShowBlame" commandName="Show Annotations" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc43ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to field" description="Invokes quick assist and selects 'Assign to field'" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc5HffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.folding.expand" commandName="Expand" description="Expands the folded region at the current selection" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc5XffEemHMbmgLRRGog" 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="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc5nffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.openRemoteTask" commandName="Open Remote Task" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc53ffEemHMbmgLRRGog" elementId="org.eclipse.php.debug.ui.commands.InspectDelegate" commandName="Inspect" description="Inspect result of evaluating selected text" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc6HffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.nextMemoryBlock" commandName="Next Memory Monitor" description="Show renderings from next memory monitor." category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc6XffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.internal.reflog.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc6nffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.context.ui.commands.task.retrieveContext" commandName="Retrieve Context" category="_e6BeK3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc63ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.Fetch" commandName="Fetch" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc7HffEemHMbmgLRRGog" elementId="org.eclipse.amalgam.explorer.contextual.core.ui.backwardNavigation" commandName="Navigate Back in Contextual Explorer" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc7XffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.run" commandName="Run JUnit Plug-in Test" description="Run JUnit Plug-in Test" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc7nffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.navigate.gotopackage" commandName="Go to Package" description="Go to Package" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc73ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc8HffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.task.ui.editor.QuickOutline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_e6BeLnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc8XffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.add.javadoc.comment" commandName="Add Javadoc Comment" description="Add a Scriptdoc comment stub to the member element" category="_e6BeQ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc8nffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the compilation unit" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc83ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.eof" commandName="EOF" description="Send end of file" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc9HffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.revealLabel" commandName="Show label" description="Show the label of the element" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc9XffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.showInQuickMenu" commandName="Show In..." description="Open the Show In menu" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc9nffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.copyLineUp" commandName="Duplicate Lines" description="Duplicates the selected lines and leaves the selection unchanged" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc93ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint" commandName="Toggle Method Breakpoint" description="Creates or removes a method breakpoint" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc-HffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc-XffEemHMbmgLRRGog" elementId="org.eclipse.xtext.xbase.ui.hierarchy.OpenTypeHierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc-nffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.assignToLocal.assist" commandName="Quick Assist - Assign to local variable" description="Invokes quick assist and selects 'Assign to local variable'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc-3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.next" commandName="Next" description="Navigate to the next item" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc_HffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.ui.LockTree" commandName="Lock Tree" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc_XffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.comment" commandName="Comment" description="Comment selected lines" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc_nffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.bugs.commands.newTaskFromMarker" commandName="New Task from Marker..." description="Report as Bug from Marker" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bc_3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdAHffEemHMbmgLRRGog" elementId="org.eclipse.wst.server.run" commandName="Run" description="Run server" category="_e6BeL3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdAXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.context.ui.commands.focus.view" commandName="Focus View" category="_e6BeP3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6BdAnffEemHMbmgLRRGog" elementId="viewId" name="View ID to Focus" optional="false"/>
</commands>
<commands xmi:id="_e6BdA3ffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.StepReturn" commandName="Step Return" description="Step return" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdBHffEemHMbmgLRRGog" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_e6BeMnffEemHMbmgLRRGog">
<parameters xmi:id="_e6BdBXffEemHMbmgLRRGog" elementId="plugin" name="Plugin"/>
<parameters xmi:id="_e6BdBnffEemHMbmgLRRGog" elementId="path" name="Path"/>
</commands>
<commands xmi:id="_e6BdB3ffEemHMbmgLRRGog" elementId="org.eclipse.amalgam.explorer.contextual.sirius.ui.command.openRepresentationCommand" commandName="Open Sirius Representation" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdCHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.diagram.ui.command.show.outline" commandName="Quick outline" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdCXffEemHMbmgLRRGog" elementId="org.eclipse.ui.help.aboutAction" commandName="About" description="Open the about dialog" category="_e6BeTnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdCnffEemHMbmgLRRGog" elementId="org.eclipse.wst.common.project.facet.ui.ConvertProjectToFacetedForm" commandName="Convert to Faceted Form..." category="_e6BeMXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdC3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.emfstore.ui.branchCheckout" commandName="checkout branch" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdDHffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.showAnnotation" commandName="Show Annotation" description="Show Annotation" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdDXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.annotate.classFile" commandName="Annotate Class File" description="Externally add Annotations to a Class File." category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdDnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.stash.create" commandName="Stash Changes..." category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdD3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected function" category="_e6BeQHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdEHffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.CheckoutCommand" commandName="Checkout" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdEXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.command.activateSelectedTask" commandName="Activate Selected Task" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdEnffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdE3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.format.document" commandName="Format" description="Format selection" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdFHffEemHMbmgLRRGog" 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="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdFXffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.workspace" commandName="Write Access in Workspace" description="Search for write references to the selected element in the workspace" category="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdFnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.team.RemoveFromIndex" commandName="Remove from Index" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdF3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.newWizard" commandName="New" description="Open the New item wizard" category="_e6BeMXffEemHMbmgLRRGog">
<parameters xmi:id="_e6BdGHffEemHMbmgLRRGog" elementId="newWizardId" name="New Wizard"/>
</commands>
<commands xmi:id="_e6BdGXffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.compareWithTag" commandName="Compare With Another Branch or Version" description="Compare with a Branch or a Version on the CVS Server" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdGnffEemHMbmgLRRGog" elementId="org.eclipse.ui.window.newWindow" commandName="New Window" description="Open another window" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdG3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected Java comment lines" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdHHffEemHMbmgLRRGog" elementId="org.eclipse.e4.ui.importer.configureProject" commandName="Configure and Detect Nested Projects..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdHXffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.history.CompareVersions" commandName="Compare with each other" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdHnffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.repositorybrowser.ManageOrgUnits" commandName="Manage OrgUnits" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdH3ffEemHMbmgLRRGog" elementId="org.eclipse.equinox.p2.ui.sdk.install" commandName="Install New Software..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdIHffEemHMbmgLRRGog" elementId="org.eclipse.ocl.examples.interpreter.ShowUMLConsoleAction" commandName="Show &OCL Console" description="Show &OCL Console" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdIXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.context.ui.commands.interest.decrement" commandName="Make Less Interesting" description="Make Less Interesting" category="_e6BeK3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdInffEemHMbmgLRRGog" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar" commandName="Run Last Launched External Tool" description="Runs the last launched external Tool" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdI3ffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.CheckoutCommand" commandName="Checkout" category="_e6BeUnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdJHffEemHMbmgLRRGog" 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="_e6BeUHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdJXffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.moveLineUp" commandName="Move Lines Up" description="Moves the selected lines up" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdJnffEemHMbmgLRRGog" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog" commandName="Show Bundle Catalog" category="_e6BeP3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6BdJ3ffEemHMbmgLRRGog" elementId="org.eclipse.equinox.p2.ui.discovery.commands.DirectoryParameter" name="Directory URL"/>
<parameters xmi:id="_e6BdKHffEemHMbmgLRRGog" elementId="org.eclipse.equinox.p2.ui.discovery.commands.TagsParameter" name="Tags"/>
</commands>
<commands xmi:id="_e6BdKXffEemHMbmgLRRGog" 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="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdKnffEemHMbmgLRRGog" elementId="org.eclipse.emfforms.editor.ecore.new" commandName="New Child Element" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdK3ffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.debug" commandName="Debug Eclipse Application" description="Debug Eclipse Application" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdLHffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.refactor.pullup" commandName="Pull Up" description="Pull the selected template in another module" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdLXffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ui.interpreter.evaluateaction" commandName="Evaluate" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdLnffEemHMbmgLRRGog" elementId="org.eclipse.sirius.tree.ui.command.refreshElement" commandName="Refresh element" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdL3ffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.edit.text.java.extract.class" commandName="Extract Class..." description="Extracts fields into a new class" category="_e6BeTHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdMHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_e6BeWXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdMXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdMnffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.importProjectSpace" commandName="Import Projectspace" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdM3ffEemHMbmgLRRGog" elementId="org.eclipse.compare.copyRightToLeft" commandName="Copy from Right to Left" description="Copy Current Change from Right to Left" category="_e6BeS3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdNHffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.commands.OpenProfileConfigurations" commandName="Profile..." description="Open profile launch configuration dialog" category="_e6BeNnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdNXffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.commitAll" commandName="Commit All Outgoing Changes" description="Commit all outgoing changes to the repository" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdNnffEemHMbmgLRRGog" elementId="org.eclipse.ui.ide.markCompleted" commandName="Mark Completed" description="Mark the selected tasks as completed" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdN3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.view.model.actions.CreateViewModel" commandName="Create View Model" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdOHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into JavaScript comments" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdOXffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.ui.delete" commandName="Delete" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdOnffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.recenter" commandName="Recenter" description="Scroll cursor line to center, top and bottom" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdO3ffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.merge" commandName="Merge" description="Merge" category="_e6BeN3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdPHffEemHMbmgLRRGog" elementId="org.eclipse.ui.edit.text.scroll.lineDown" commandName="Scroll Line Down" description="Scroll down one line of text" category="_e6BeKXffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdPXffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.search.find.occurrences" commandName="Occurrences in File" description="Find occurrences of the selection in the file" category="_e6BeJ3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdPnffEemHMbmgLRRGog" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Main Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_e6BeMnffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdP3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdQHffEemHMbmgLRRGog" elementId="org.eclipse.wst.sse.ui.outline.customFilter" commandName="&Filters" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdQXffEemHMbmgLRRGog" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_e6BeR3ffEemHMbmgLRRGog">
<parameters xmi:id="_e6BdQnffEemHMbmgLRRGog" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/>
</commands>
<commands xmi:id="_e6BdQ3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.correction.addBlock.assist" commandName="Quick Assist - Replace statement with block" description="Invokes quick assist and selects 'Replace statement with block'" category="_e6BeLHffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdRHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the JavaScript file" category="_e6BeR3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdRXffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.command.mark_duplicate_ids" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" commandName="Mark Duplicate Model Element Ids" description="Marks Duplicate Model Element Ids"/>
<commands xmi:id="_e6BdRnffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.command.mark_duplicate_labels" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" commandName="Mark Duplicate Model Labels" description="Marks Duplicate Model Labels"/>
<commands xmi:id="_e6BdR3ffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.command.mark_duplicate_attributes" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" commandName="Mark Duplicate Model Attributes..." description="Marks Duplicate Model Attributes"/>
<commands xmi:id="_e6BdSHffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.command.repair_duplicate_ids" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" commandName="Repair Duplicate Model Element IDs" description="Repairs Duplicate Model Element IDs"/>
<commands xmi:id="_e6BdSXffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.command.unmark" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" commandName="Unmark Model Items" description="Unmarks All Model Items"/>
<commands xmi:id="_e6BdSnffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.command.autosizeColumns" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" commandName="Autosize Columns" description="Autosizes all columns to their content"/>
<commands xmi:id="_e6BdS3ffEemHMbmgLRRGog" elementId="org.eclipse.e4.tools.emf.ui.command.resetToDefault" contributorURI="platform:/plugin/org.eclipse.e4.tools.emf.ui" commandName="Reset To Default" description="Resets the table to default values"/>
<commands xmi:id="_e6BdTHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.ant.ui.actionSet.presentation/org.eclipse.ant.ui.toggleAutoReconcile" commandName="Toggle Ant Editor Auto Reconcile" description="Toggle Ant Editor Auto Reconcile" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdTXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunWithConfigurationAction" commandName="Run As" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdTnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunHistoryMenuAction" commandName="Run History" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdT3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunDropDownAction" commandName="Run" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdUHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugWithConfigurationAction" commandName="Debug As" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdUXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugHistoryMenuAction" commandName="Debug History" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdUnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugDropDownAction" commandName="Debug" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdU3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileDropDownAction" commandName="Profile" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdVHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileWithConfigurationAction" commandName="Profile As" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdVXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileHistoryMenuAction" commandName="Profile History" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdVnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.NewTypeDropDown" commandName="Class..." description="New Java Class" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdV3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenPackageWizard" commandName="Package..." description="New Java Package" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdWHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenProjectWizard" commandName="Java Project..." description="New Java Project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdWXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.ui.SearchActionSet/org.eclipse.jdt.ui.actions.OpenJavaSearchPage" commandName="Java..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdWnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.java.actionSet.browsing/org.eclipse.mylyn.java.ui.actions.ApplyMylynToBrowsingPerspectiveAction" commandName="Focus Browsing Perspective" description="Focus Java Browsing Views on Active Task" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdW3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.doc.actionSet/org.eclipse.mylyn.tasks.ui.bug.report" commandName="Report Bug or Enhancement..." description="Report Bug or Enhancement" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdXHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.navigation.additions/org.eclipse.mylyn.tasks.ui.navigate.task.history" commandName="Activate Previous Task" description="Activate Previous Task" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdXXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.pde.ui.SearchActionSet/org.eclipse.pde.ui.actions.OpenPluginSearchPage" commandName="Plug-in..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdXnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.ui.cheatsheets.actionSet/org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction" commandName="Cheat Sheets..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdX3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.search.searchActionSet/org.eclipse.search.OpenSearchDialogPage" commandName="Search..." description="Search" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdYHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdYXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.ConfigureProject" commandName="Share Project..." description="Share the project with others using a version and configuration management system." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdYnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.ui.externaltools.ExternalToolsSet/org.eclipse.ui.externaltools.ExternalToolMenuDelegateMenu" commandName="External Tools" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdY3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.dltk.actionSet.browsing/org.eclipse.dltk.mylyn.actions.ApplyMylynToBrowsingPerspectiveAction" commandName="Focus Browsing Perspective" description="Focus Script Browsing Views on Active Task" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdZHffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.move.element" commandName="Move..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdZXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.write.access.in.working.set" commandName="Working Set..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdZnffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.write.access.in.hierarchy" commandName="Hierarchy" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdZ3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.write.access.in.project" commandName="Project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdaHffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.write.access.in.workspace" commandName="Workspace" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdaXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.read.access.in.working.set" commandName="Working Set..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdanffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.read.access.in.hierarchy" commandName="Hierarchy" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bda3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.read.access.in.project" commandName="Project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdbHffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.read.access.in.workspace" commandName="Workspace" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdbXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.implementors.in.working.set" commandName="Working Set..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdbnffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.implementors.in.project" commandName="Project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdb3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.implementors.in.workspace" commandName="Workspace" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdcHffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.declarations.in.working.set" commandName="Working Set..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdcXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.declarations.in.hierarchy" commandName="Hierarchy" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdcnffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.declarations.in.project" commandName="Project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdc3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.declarations.in.workspace" commandName="Workspace" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BddHffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.references.in.working.set" commandName="Working Set..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BddXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.edit.text.script.search.references.in.hierarchy" commandName="Hierarchy" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BddnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.php.debug.ui.actionSet/org.eclipse.php.debug.ui.WatchAction" commandName="Watch" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdd3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.php.ui.SearchActionSet/org.eclipse.pdt.ui.actions.OpenPHPSearchPage" commandName="PHP..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdeHffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.edit.text.search.method.exits" commandName="MethodExitOccurrences.label" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdeXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet/org.eclipse.wst.jsdt.ui.actions.OpenFileWizard" commandName="JavaScript Source File" description="New JavaScript file" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdenffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet/org.eclipse.wst.jsdt.ui.actions.OpenProjectWizard" commandName="JavaScript Project..." description="New JavaScript Project" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bde3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.refactor.show.refactoring.history" commandName="History..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdfHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.SearchActionSet/org.eclipse.wst.jsdt.ui.actions.OpenJavaSearchPage" commandName="JavaScript..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdfXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.server.ui.new.actionSet/org.eclipse.wst.server.ui.action.new.server" commandName="Create Server" description="Create Server" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdfnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.server.ui.internal.webbrowser.actionSet/org.eclipse.wst.server.ui.internal.webbrowser.action.open" commandName="Open Web Browser" description="Open Web Browser" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdf3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.server.ui.internal.webbrowser.actionSet/org.eclipse.wst.server.ui.internal.webbrowser.action.switch" commandName="Web Browser" description="Web Browser" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdgHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newCSSFile" commandName="CSS" description="Create a new Cascading Style Sheet" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdgXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newJSFile" commandName="JavaScript" description="Create a new JavaScript file" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdgnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newHTMLFile" commandName="HTML" description="Create a new HTML page" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdg3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.jsdt.chromium.debug.ui.actionSets/org.eclipse.wst.jsdt.chromium.debug.ui.actions.AddExceptionBreakpointAction" commandName="Add V8/Chrome JavaScript Exception Breakpoint" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdhHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.ant.ui.BreakpointRulerActions/org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdhXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.exporter.genModelEditorContribution/org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor" commandName="Export Model..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdhnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.importer.genModelEditorContribution/org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor" commandName="Reload..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdh3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.RemoveMappingActionID" commandName="Remove Mapping" description="Remove the mapping associated with the selected objects." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdiHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.TypeMatchMappingActionID" commandName="Match Mapping by Type" description="Create child mappings automatically by type." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdiXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.NameMatchMappingActionID" commandName="Match Mapping by Name" description="Create child mappings automatically by name." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdinffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID" commandName="Create One-sided Mapping" description="Create a new mapping for the selected object." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdi3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateMappingActionID" commandName="Create Mapping" description="Create a new mapping between the selected objects." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdjHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID" commandName="Add Output Root..." description="Add new output root." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdjXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID" commandName="Add Input Root..." description="Add new input root." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdjnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.mapping.xsd2ecore.presentation.XSD2EcoreContributionID/org.eclipse.emf.mapping.action.TypeMatchMappingActionID" commandName="Match Mapping by Type" description="Create child mappings automatically by type." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdj3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.mapping.xsd2ecore.presentation.XSD2EcoreContributionID/org.eclipse.emf.mapping.action.NameMatchMappingActionID" commandName="Match Mapping by Name" description="Create child mappings automatically by name." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdkHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.mapping.xsd2ecore.presentation.XSD2EcoreContributionID/org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID" commandName="Create One-sided Mapping" description="Create a new mapping for the selected object." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdkXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.mapping.xsd2ecore.presentation.XSD2EcoreContributionID/org.eclipse.emf.mapping.action.CreateMappingActionID" commandName="Create Mapping" description="Create a new mapping between the selected objects." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdknffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.mapping.xsd2ecore.presentation.XSD2EcoreContributionID/org.eclipse.emf.mapping.action.RemoveMappingActionID" commandName="Remove Mapping" description="Remove the mapping associated with the selected objects." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdk3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.emf.parsley.dsl.EmfParsleyDsl.rulerActions/org.eclipse.emf.parsley.dsl.EmfParsleyDsl.doubleClickBreakpointAction" commandName="Not Used" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdlHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.CompilationUnitEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdlXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ClassFileEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdlnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetExecute" commandName="Execute" description="Execute the Selected Text" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdl3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetDisplay" commandName="Display" description="Display Result of Evaluating Selected Text" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdmHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetInspect" commandName="Inspect" description="Inspect Result of Evaluating Selected Text" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdmXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdmnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdm3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdnHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdnXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdnnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.sirius.table.ui.editionTableEditorID.actions/org.eclipse.sirius.table.ui.refresh" commandName="Refresh" description="Force a refresh of the table" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdn3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.sirius.table.ui.crossTableEditorID.actions/org.eclipse.sirius.table.ui.refresh" commandName="Refresh" description="Force a refresh of the table" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdoHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.sirius.tree.ui.EditorID.actions/org.eclipse.sirius.tree.ui.refresh" commandName="Refresh" description="Force a refresh of the tree" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdoXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Text Editor Bookmark Ruler Action" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdonffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Text Editor Ruler Single-Click" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdo3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.examples.uml.ui.EcoreEditorContribution/org.eclipse.uml2.examples.uml.ui.ConvertToUMLModelActionID" commandName="Convert to UML Model..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdpHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.examples.uml.ui.UMLEditorContributionID/org.eclipse.uml2.examples.uml.ui.GenerateUML2StereotypesActionID" commandName="UML2" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdpXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.examples.uml.ui.UMLEditorContributionID/org.eclipse.uml2.examples.uml.ui.GenerateStandardStereotypesActionID" commandName="Standard" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdpnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.examples.uml.ui.UMLEditorContributionID/org.eclipse.uml2.examples.uml.ui.GenerateEcoreStereotypesActionID" commandName="Ecore" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdp3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.examples.uml.ui.UMLEditorContributionID/org.eclipse.uml2.examples.uml.ui.GenerateUMLPrimitiveTypesActionID" commandName="UML" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdqHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.examples.uml.ui.UMLEditorContributionID/org.eclipse.uml2.examples.uml.ui.GenerateJavaPrimitiveTypesActionID" commandName="Java" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdqXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.examples.uml.ui.UMLEditorContributionID/org.eclipse.uml2.examples.uml.ui.GenerateEcorePrimitiveTypesActionID" commandName="Ecore" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdqnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.examples.uml.ui.UMLEditorContributionID/org.eclipse.uml2.examples.uml.ui.GenerateXMLPrimitiveTypesActionID" commandName="XML" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdq3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.examples.uml.ui.UMLEditorContributionID/org.eclipse.uml2.examples.uml.ui.ExternalizeLabelsActionID" commandName="Labels" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdrHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.examples.uml.ui.UMLEditorContributionID/org.eclipse.uml2.examples.uml.ui.ExternalizeKeywordsActionID" commandName="Keywords" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdrXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.examples.uml.ui.UMLEditorContributionID/org.eclipse.uml2.examples.uml.ui.ConvertToModelLibraryActionID" commandName="Model Library" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdrnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.examples.uml.ui.UMLEditorContributionID/org.eclipse.uml2.examples.uml.ui.ConvertToMetamodelActionID" commandName="Metamodel" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdr3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.examples.uml.ui.UMLEditorContributionID/org.eclipse.uml2.examples.uml.ui.ConvertToEcoreModelActionID" commandName="Ecore Model..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdsHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.uml.editor.UMLEditorContributionID/org.eclipse.uml2.uml.editor.CreateExtensionActionID" commandName="Create Extension..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdsXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.uml.editor.UMLEditorContributionID/org.eclipse.uml2.uml.editor.ReferenceMetamodelActionID" commandName="Reference Metamodel..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdsnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.uml.editor.UMLEditorContributionID/org.eclipse.uml2.uml.editor.ReferenceMetaclassActionID" commandName="Reference Metaclass..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bds3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.uml.editor.UMLEditorContributionID/org.eclipse.uml2.uml.editor.DefineProfileActionID" commandName="Define" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdtHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.uml.editor.UMLEditorContributionID/org.eclipse.uml2.uml.editor.UnapplyProfileActionID" commandName="Unapply Profile..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdtXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.uml.editor.UMLEditorContributionID/org.eclipse.uml2.uml.editor.MergePackageActionID" commandName="Merge..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdtnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.uml.editor.UMLEditorContributionID/org.eclipse.uml2.uml.editor.ImportTypeActionID" commandName="Import Type..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdt3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.uml.editor.UMLEditorContributionID/org.eclipse.uml2.uml.editor.ApplyProfileActionID" commandName="Apply Profile..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BduHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.uml.editor.UMLEditorContributionID/org.eclipse.uml2.uml.editor.ExpandTemplatesActionID" commandName="Expand Templates..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BduXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.uml.editor.UMLEditorContributionID/org.eclipse.uml2.uml.editor.UnapplyStereotypeActionID" commandName="Unapply Stereotype..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdunffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.uml.editor.UMLEditorContributionID/org.eclipse.uml2.uml.editor.DestroyElementActionID" commandName="Destroy" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdu3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.uml2.uml.editor.UMLEditorContributionID/org.eclipse.uml2.uml.editor.ApplyStereotypeActionID" commandName="Apply Stereotype..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdvHffEemHMbmgLRRGog" elementId="AUTOGEN:::acceleo.rulerActions/org.eclipse.acceleo.ide.ui.debug.actions.doubleClickBreakpointAction" commandName="Toggle Acceleo Breakpoint" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdvXffEemHMbmgLRRGog" elementId="AUTOGEN:::acceleo.rulerActions/org.eclipse.acceleo.ide.ui.debug.actions.clickBreakpointAction" commandName="Filter Acceleo Breakpoint" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdvnffEemHMbmgLRRGog" elementId="AUTOGEN:::acceleo.showWhitespaceCharactersAction/org.eclipse.acceleo.ide.ui.editors.template.showwhitespacecharacters" commandName="Show Whitespace Characters" description="Show Whitespace Characters" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdv3ffEemHMbmgLRRGog" elementId="AUTOGEN:::acceleo.MarkOccurrencesToggle/org.eclipse.acceleo.ide.ui.editors.template.markoccurrences" commandName="Toggle Mark Occurrences" description="Toggle Mark Occurrences" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdwHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.CompleteOCLBreakpointRulerActions/org.eclipse.ocl.examples.debug.ui.actions.CompleteOCLRulerToggleBreakpointAction" commandName="OCL Toggle Breakpoint" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdwXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.OCLinEcoreBreakpointRulerActions/org.eclipse.ocl.examples.debug.ui.actions.OCLinEcoreRulerToggleBreakpointAction" commandName="OCL Toggle Breakpoint" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdwnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.php.editor.ruler.actions/org.eclipse.php.internal.ui.editor.PhpSelectRulerAction" commandName="PHP Editor Ruler Single-Click" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdw3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdxHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdxXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdxnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdx3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdyHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdyXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.jsdt.debug.ui.togglebreakpoint/org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint" commandName="Toggle Breakpoint" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdynffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="JavaScript Editor Bookmark Ruler Action" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdy3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="JavaScript Editor Ruler Single-Click" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdzHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="JavaScript Editor Ruler Single-Click" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdzXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="JavaScript Editor Bookmark Ruler Action" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BdznffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="JavaScript Editor Ruler Single-Click" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bdz3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="%AddBookmark.label" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd0HffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="%SelectRuler.label" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd0XffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd0nffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd03ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd1HffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd1XffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.editorActions/org.eclipse.wst.jsdt.chromium.debug.ui.editor.ruler.doubleClickBreakpointAction" commandName="Not Used" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd1nffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.amalgam.explorer.contextual.sirius.ui.viewerContribution.showHideDiagramAndTable/org.eclipse.amalgam.explorer.contextual.sirius.ui.actions.ShowHideSiriusRepresentations" commandName="Show diagrams and Tables in the Contextual Explorer" description="Show diagrams and Tables in the Contextual Explorer" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd13ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.PulldownActions/org.eclipse.debug.ui.debugview.pulldown.ViewManagementAction" commandName="View Management..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd2HffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.debugview.toolbar/org.eclipse.debug.ui.debugview.toolbar.removeAllTerminated" commandName="Remove All Terminated" description="Remove All Terminated Launches" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd2XffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.removeAll" commandName="Remove All" description="Remove All Breakpoints" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd2nffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.linkWithDebugView" commandName="Link with Debug View" description="Link with Debug View" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd23ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.workingSets" commandName="Working Sets..." description="Manage Working Sets" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd3HffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.clearDefaultBreakpointGroup" commandName="Deselect Default Working Set" description="Deselect Default Working Set" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd3XffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.setDefaultBreakpointGroup" commandName="Select Default Working Set..." description="Select Default Working Set" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd3nffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction" commandName="Group By" description="Show" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd33ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.removeAll" commandName="Remove All" description="Remove All Expressions" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd4HffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.AddWatchExpression" commandName="Add Watch Expression..." description="Create a new watch expression" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd4XffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.PinMemoryBlockAction" commandName="Pin Memory Monitor" description="Pin Memory Monitor" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd4nffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.NewMemoryViewAction" commandName="New Memory View" description="New Memory View" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd43ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglemonitors" commandName="Toggle Memory Monitors Pane" description="Toggle Memory Monitors Pane" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd5HffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.linkrenderingpanes" commandName="Link Memory Rendering Panes" description="Link Memory Rendering Panes" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd5XffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.tablerendering.preferencesaction" commandName="Table Renderings Preferences..." description="&Table Renderings Preferences..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd5nffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglesplitpane" commandName="Toggle Split Pane" description="Toggle Split Pane" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd53ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.switchMemoryBlock" commandName="Switch Memory Monitor" description="Switch Memory Monitor" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd6HffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.memoryViewPreferencesAction" commandName="Preferences..." description="&Preferences..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd6XffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.Preferences" commandName="Java Preferences..." description="Opens preferences for Java variables" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd6nffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variablesViewActions.AllReferencesInView" commandName="Show References" description="Shows references to each object in the variables view as an array of objects." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd63ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowNullEntries" commandName="Show Null Array Entries" description="Show Null Array Entries" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd7HffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd7XffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd7nffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd73ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.variableViewActions.Preferences" commandName="Java Preferences..." description="Opens preferences for Java variables" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd8HffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.AllReferencesInView" commandName="Show References" description="Show &References" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd8XffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowNullEntries" commandName="Show Null Array Entries" description="Show Null Array Entries" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd8nffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd83ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd9HffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd9XffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.actions.AddException" commandName="Add Java Exception Breakpoint" description="Add Java Exception Breakpoint" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd9nffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd93ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowThreadGroups" commandName="Show Thread Groups" description="Show Thread Groups" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd-HffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd-XffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowSystemThreads" commandName="Show System Threads" description="Show System Threads" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd-nffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowMonitorThreadInfo" commandName="Show Monitors" description="Show the Thread & Monitor Information" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd-3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Watch" commandName="Watch" description="Create a Watch Expression from the Selected Text" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd_HffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Execute" commandName="Execute" description="Execute the Selected Text" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd_XffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Display" commandName="Display" description="Display Result of Evaluating Selected Text" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd_nffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Inspect" commandName="Inspect" description="Inspect Result of Evaluating Selected Text" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6Bd_3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.context.ui.outline.contribution/org.eclipse.mylyn.context.ui.contentOutline.focus" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeAHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.java.ui.markers.breakpoints.contribution/org.eclipse.mylyn.java.ui.actions.focus.markers.breakpoints" commandName="Focus on Active Task" description="Focus on Active Task" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeAXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.ui.debug.view.contribution/org.eclipse.mylyn.ui.actions.FilterResourceNavigatorAction" commandName="Focus on Active Task (Experimental)" description="Focus on Active Task (Experimental)" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeAnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.ui.projectexplorer.filter/org.eclipse.mylyn.ide.ui.actions.focus.projectExplorer" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeA3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.ui.resource.navigator.filter/org.eclipse.mylyn.ide.ui.actions.focus.resourceNavigator" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeBHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.problems.contribution/org.eclipse.mylyn.ide.ui.actions.focus.markers.problems" commandName="Focus on Active Task" description="Focus on Active Task" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeBXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.markers.all.contribution/org.eclipse.mylyn.ide.ui.actions.focus.markers.all" commandName="Focus on Active Task" description="Focus on Active Task" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeBnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.markers.tasks.contribution/org.eclipse.mylyn.ide.ui.actions.focus.markers.tasks" commandName="Focus on Active Task" description="Focus on Active Task" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeB3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.markers.bookmarks.contribution/org.eclipse.mylyn.ide.ui.actions.focus.markers.bookmarks" commandName="Focus on Active Task" description="Focus on Active Task" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeCHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.java.explorer.contribution/org.eclipse.mylyn.java.actions.focus.packageExplorer" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeCXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.search.open" commandName="Search Repository..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeCnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.synchronize.changed" commandName="Synchronize Changed" description="Synchronize Changed" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeC3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.tasks.restore" commandName="Restore Tasks from History..." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeDHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.open.repositories.view" commandName="Show Task Repositories View" description="Show Task Repositories View" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeDXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.doc.legend.show.action" commandName="Show UI Legend" description="Show Tasks UI Legend" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeDnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.context.ui.actions.tasklist.focus" commandName="Focus on Workweek" description="Focus on Workweek" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeD3ffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.pde.ui.logViewActions/org.eclipse.jdt.debug.ui.LogViewActions.showStackTrace" commandName="Show Stack Trace in Console View" description="Show Stack Trace in Console View" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeEHffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.acceleo.ui.interpreter.debug.VariableViewActions/org.eclipse.acceleo.ui.interpreter.debug.AddVariablesToInterpreterAction" commandName="Adds variables." description="Add the selected variables in the interpreter." category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeEXffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.mylyn.dltk.explorer.contribution/org.eclipse.mylyn.dltk.actions.focus.packageExplorer" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeEnffEemHMbmgLRRGog" elementId="AUTOGEN:::org.eclipse.dltk.mylyn.markers.breakpoints.contribution/org.eclipse.dltk.mylyn.actions.focus.markers.breakpoints" commandName="Focus on Active Task" description="Focus on Active Task" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeE3ffEemHMbmgLRRGog" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.wst.jsdt.debug.ui.add.scriptload.breakpoint" commandName="Add Script Load Breakpoint" description="Add Script Load Breakpoint" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeFHffEemHMbmgLRRGog" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Suspend For All Script Loads" description="Suspends when any script is loaded" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeFXffEemHMbmgLRRGog" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.wst.jsdt.debug.ui.suspend.on.exceptions" commandName="Suspend On JavaScript Exceptions" description="Suspend on all JavaScript exceptions" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeFnffEemHMbmgLRRGog" elementId="AUTOGEN:::debugViewActions/org.eclipse.wst.jsdt.debug.ui.show.all.scripts" commandName="Show All Scripts" description="Shows or hides all scripts loaded in the visible targets" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeF3ffEemHMbmgLRRGog" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.functions" commandName="Show function variables" description="Show or hide function variables" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeGHffEemHMbmgLRRGog" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.this" commandName="Show 'this' variable" description="Show or hide the this variable" category="_e6BeP3ffEemHMbmgLRRGog"/>
<commands xmi:id="_e6BeGXffEemHMbmgLRRGog" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.prototypes" commandName="Show proto variables" description="Show or hide proto variables" category="_e6BeP3ffEemHMbmgLRRGog"/>
<addons xmi:id="_e6BeGnffEemHMbmgLRRGog" elementId="org.eclipse.e4.core.commands.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.core.commands/org.eclipse.e4.core.commands.CommandServiceAddon"/>
<addons xmi:id="_e6BeG3ffEemHMbmgLRRGog" elementId="org.eclipse.e4.ui.contexts.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.services/org.eclipse.e4.ui.services.ContextServiceAddon"/>
<addons xmi:id="_e6BeHHffEemHMbmgLRRGog" elementId="org.eclipse.e4.ui.bindings.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.bindings/org.eclipse.e4.ui.bindings.BindingServiceAddon"/>
<addons xmi:id="_e6BeHXffEemHMbmgLRRGog" elementId="org.eclipse.e4.ui.workbench.commands.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.CommandProcessingAddon"/>
<addons xmi:id="_e6BeHnffEemHMbmgLRRGog" elementId="org.eclipse.e4.ui.workbench.contexts.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.ContextProcessingAddon"/>
<addons xmi:id="_e6BeH3ffEemHMbmgLRRGog" elementId="org.eclipse.e4.ui.workbench.bindings.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.swt/org.eclipse.e4.ui.workbench.swt.util.BindingProcessingAddon"/>
<addons xmi:id="_e6BeIHffEemHMbmgLRRGog" elementId="Cleanup Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.cleanupaddon.CleanupAddon"/>
<addons xmi:id="_e6BeIXffEemHMbmgLRRGog" elementId="DnD Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.dndaddon.DnDAddon"/>
<addons xmi:id="_e6BeInffEemHMbmgLRRGog" elementId="MinMax Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon"/>
<addons xmi:id="_e6BeI3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.workbench.addon.0" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.HandlerProcessingAddon"/>
<addons xmi:id="_e6BeJHffEemHMbmgLRRGog" elementId="SplitterAddon" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.splitteraddon.SplitterAddon"/>
<addons xmi:id="_e6BeJXffEemHMbmgLRRGog" elementId="org.eclipse.ui.ide.addon.0" contributorURI="platform:/plugin/org.eclipse.ui.ide" contributionURI="bundleclass://org.eclipse.ui.ide/org.eclipse.ui.internal.ide.addons.SaveAllDirtyPartsAddon"/>
<addons xmi:id="_e6BeJnffEemHMbmgLRRGog" elementId="org.eclipse.ui.ide.application.addon.0" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" contributionURI="bundleclass://org.eclipse.ui.ide.application/org.eclipse.ui.internal.ide.application.addons.ModelCleanupAddon"/>
<categories xmi:id="_e6BeJ3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.category.edit" name="Edit"/>
<categories xmi:id="_e6BeKHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.ui.editor.category" name="WikiText Markup Editing Commands" description="commands for editing lightweight markup"/>
<categories xmi:id="_e6BeKXffEemHMbmgLRRGog" elementId="org.eclipse.ui.category.textEditor" name="Text Editing" description="Text Editing Commands"/>
<categories xmi:id="_e6BeKnffEemHMbmgLRRGog" elementId="org.eclipse.dltk.mylyn.commands" name="DLTK Context" description="DLTK Task-Focused Interface Commands"/>
<categories xmi:id="_e6BeK3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.context.ui.commands" name="Focused UI" description="Task-Focused Interface"/>
<categories xmi:id="_e6BeLHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.category.source" name="Source" description="JavaScript Source Actions"/>
<categories xmi:id="_e6BeLXffEemHMbmgLRRGog" elementId="org.eclipse.emf.cdo.security.ui.management" name="CDO Security Management"/>
<categories xmi:id="_e6BeLnffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.commands" name="Task Repositories"/>
<categories xmi:id="_e6BeL3ffEemHMbmgLRRGog" elementId="org.eclipse.wst.server.ui" name="Server" description="Server"/>
<categories xmi:id="_e6BeMHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.wikitext.context.ui.commands" name="%commands.category.name" description="%commands.category.description"/>
<categories xmi:id="_e6BeMXffEemHMbmgLRRGog" elementId="org.eclipse.ui.category.file" name="File"/>
<categories xmi:id="_e6BeMnffEemHMbmgLRRGog" elementId="org.eclipse.ui.category.window" name="Window"/>
<categories xmi:id="_e6BeM3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.ecp.cdo.ui.commands" name="ECP CDO Provider"/>
<categories xmi:id="_e6BeNHffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.category.refactoring" name="Refactor - PHP" description="PHP Refactoring Actions"/>
<categories xmi:id="_e6BeNXffEemHMbmgLRRGog" elementId="org.eclipse.emfforms.editor.commands.category" name="Ecore Actions"/>
<categories xmi:id="_e6BeNnffEemHMbmgLRRGog" elementId="org.eclipse.debug.ui.category.run" name="Run/Debug" description="Run/Debug command category"/>
<categories xmi:id="_e6BeN3ffEemHMbmgLRRGog" elementId="org.eclipse.team.cvs.ui.actionSet" name="CVS" description="Actions that apply when working with CVS repositories"/>
<categories xmi:id="_e6BeOHffEemHMbmgLRRGog" elementId="org.eclipse.ui.category.dialogs" name="Dialogs" description="Commands for opening dialogs"/>
<categories xmi:id="_e6BeOXffEemHMbmgLRRGog" elementId="org.eclipse.oomph" name="Oomph"/>
<categories xmi:id="_e6BeOnffEemHMbmgLRRGog" elementId="org.eclipse.sirius.ui.tools.commands" name="Sirius Commands"/>
<categories xmi:id="_e6BeO3ffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.commons.repositories.ui.category.Team" name="Team"/>
<categories xmi:id="_e6BePHffEemHMbmgLRRGog" elementId="org.eclipse.pde.ui.category.source" name="Manifest Editor Source" description="PDE Source Page actions"/>
<categories xmi:id="_e6BePXffEemHMbmgLRRGog" elementId="org.eclipse.php.ui.category.source" name="Source" description="PHP Source Actions"/>
<categories xmi:id="_e6BePnffEemHMbmgLRRGog" elementId="org.eclipse.oomph.commands" name="Oomph"/>
<categories xmi:id="_e6BeP3ffEemHMbmgLRRGog" elementId="org.eclipse.core.commands.categories.autogenerated" name="Uncategorized" description="Commands that were either auto-generated or have no category"/>
<categories xmi:id="_e6BeQHffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.ui.category.refactoring" name="Refactor - JavaScript" description="JavaScript Refactoring Actions"/>
<categories xmi:id="_e6BeQXffEemHMbmgLRRGog" elementId="org.eclipse.team.ui.category.team" name="Team" description="Actions that apply when working with a Team"/>
<categories xmi:id="_e6BeQnffEemHMbmgLRRGog" elementId="org.eclipse.ui.category.views" name="Views" description="Commands for opening views"/>
<categories xmi:id="_e6BeQ3ffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.category.source" name="Script Source"/>
<categories xmi:id="_e6BeRHffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.tasks.ui.category.editor" name="Task Editor"/>
<categories xmi:id="_e6BeRXffEemHMbmgLRRGog" elementId="org.eclipse.ui.ide.markerContents" name="Contents" description="The category for menu contents"/>
<categories xmi:id="_e6BeRnffEemHMbmgLRRGog" elementId="org.eclipse.oomph.setup.category" name="Oomph Setup"/>
<categories xmi:id="_e6BeR3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.category.navigate" name="Navigate"/>
<categories xmi:id="_e6BeSHffEemHMbmgLRRGog" elementId="org.eclipse.acceleo.ide.ui.category" name="Acceleo"/>
<categories xmi:id="_e6BeSXffEemHMbmgLRRGog" elementId="org.eclipse.mylyn.java.ui.commands" name="Java Context" description="Java Task-Focused Interface Commands"/>
<categories xmi:id="_e6BeSnffEemHMbmgLRRGog" elementId="org.eclipse.wst.jsdt.debug.ui.category" name="JavaScript Debug" description="Tooling for debugging JavaScript"/>
<categories xmi:id="_e6BeS3ffEemHMbmgLRRGog" elementId="org.eclipse.compare.ui.category.compare" name="Compare" description="Compare command category"/>
<categories xmi:id="_e6BeTHffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.category.refactoring" name="Refactor - Java" description="Java Refactoring Actions"/>
<categories xmi:id="_e6BeTXffEemHMbmgLRRGog" elementId="org.eclipse.emf.codegen.ecore.ui.Commands" name="EMF Code Generation" description="Commands for the EMF code generation tools"/>
<categories xmi:id="_e6BeTnffEemHMbmgLRRGog" elementId="org.eclipse.ui.category.help" name="Help"/>
<categories xmi:id="_e6BeT3ffEemHMbmgLRRGog" elementId="org.eclipse.ui.category.project" name="Project"/>
<categories xmi:id="_e6BeUHffEemHMbmgLRRGog" elementId="org.eclipse.search.ui.category.search" name="Search" description="Search command category"/>
<categories xmi:id="_e6BeUXffEemHMbmgLRRGog" elementId="org.eclipse.emf.parsley.dsl.additional.builder.emfParsleyDslPluginXmlNature.category" name="Emf Parsley Dsl Plugin Xml Nature commands"/>
<categories xmi:id="_e6BeUnffEemHMbmgLRRGog" elementId="org.eclipse.egit.ui.commandCategory" name="Git"/>
<categories xmi:id="_e6BeU3ffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.category.XtextEditor" name="Editing" description="Editing Commands"/>
<categories xmi:id="_e6BeVHffEemHMbmgLRRGog" elementId="org.eclipse.amalgam.discovery.modeling.commands.category" name="Modeling Amalgamation"/>
<categories xmi:id="_e6BeVXffEemHMbmgLRRGog" elementId="org.eclipse.ui.category.perspectives" name="Perspectives" description="Commands for opening perspectives"/>
<categories xmi:id="_e6BeVnffEemHMbmgLRRGog" elementId="org.eclipse.ltk.ui.category.refactoring" name="Refactoring"/>
<categories xmi:id="_e6BeV3ffEemHMbmgLRRGog" elementId="org.eclipse.gef.category.view" name="View" description="View"/>
<categories xmi:id="_e6BeWHffEemHMbmgLRRGog" elementId="org.eclipse.sirius.common.ui.category" name="Sirius"/>
<categories xmi:id="_e6BeWXffEemHMbmgLRRGog" elementId="org.eclipse.jdt.ui.category.source" name="Source" description="Java Source Actions"/>
<categories xmi:id="_e6BeWnffEemHMbmgLRRGog" elementId="org.eclipse.pde.runtime.spy.commands.category" name="Spy"/>
<categories xmi:id="_e6BeW3ffEemHMbmgLRRGog" elementId="org.eclipse.emf.emfstore.client.ui.project" name="ECP"/>
<categories xmi:id="_e6BeXHffEemHMbmgLRRGog" elementId="org.eclipse.xtext.ui.category.refactoring" name="Refactoring" description="Refactoring Commands"/>
<categories xmi:id="_e6BeXXffEemHMbmgLRRGog" elementId="org.eclipse.dltk.ui.category.refactoring" name="Refactor - DLTK" description="DLTK Refactoring Actions"/>
</application:Application>