-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathworkbench.xmi
1310 lines (1310 loc) · 63.3 KB
/
workbench.xmi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="ASCII"?>
<application:Application xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns: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="_zOT6kf4tEeWH250tPNcT9g"
elementId="org.eclipse.e4.legacy.ide.application"
contributorURI="platform:/plugin/org.eclipse.ui.workbench"
selectedElement="_zOT6kv4tEeWH250tPNcT9g"
bindingContexts="_zOUhpf4tEeWH250tPNcT9g">
<persistedState key="memento"
value="<?xml version="1.0" encoding="UTF-8"?>
<workbench>
<mruList/>
</workbench>" />
<tags>activeSchemeId:org.rulez.magwas.zenta.editor.keybindings</tags>
<tags>ModelMigrationProcessor.001</tags>
<children xsi:type="basic:TrimmedWindow"
xmi:id="_zOT6kv4tEeWH250tPNcT9g" elementId="IDEWindow"
contributorURI="platform:/plugin/org.eclipse.ui.workbench"
selectedElement="_zkJnsv4tEeWH250tPNcT9g" x="0" y="0" width="1032"
height="769">
<persistedState key="coolBarVisible" value="true" />
<persistedState key="perspectiveBarVisible"
value="false" />
<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" />
<tags>topLevel</tags>
<children xsi:type="basic:PartSashContainer"
xmi:id="_zkJnsv4tEeWH250tPNcT9g"
selectedElement="_zkKOwP4tEeWH250tPNcT9g" horizontal="true">
<children xsi:type="advanced:PerspectiveStack"
xmi:id="_zkKOwP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.ide.perspectivestack" containerData="7500"
selectedElement="_zovz0P4tEeWH250tPNcT9g">
<children xsi:type="advanced:Perspective"
xmi:id="_zovz0P4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.perspectiveMain"
selectedElement="_zovz0f4tEeWH250tPNcT9g" label="Main"
iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/default_persp.png">
<tags>persp.actionSet:org.rulez.magwas.zenta.templates.actionSet</tags>
<children xsi:type="basic:PartSashContainer"
xmi:id="_zovz0f4tEeWH250tPNcT9g"
selectedElement="_zovz0v4tEeWH250tPNcT9g" horizontal="true">
<children xsi:type="basic:PartSashContainer"
xmi:id="_zovz0v4tEeWH250tPNcT9g" containerData="2300"
selectedElement="_zovz0_4tEeWH250tPNcT9g">
<children xsi:type="basic:PartStack"
xmi:id="_zovz0_4tEeWH250tPNcT9g" elementId="folderLeftTop"
containerData="6000" selectedElement="_zovz1P4tEeWH250tPNcT9g">
<tags>active</tags>
<children xsi:type="advanced:Placeholder"
xmi:id="_zovz1P4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.treeModelView"
ref="_zon4AP4tEeWH250tPNcT9g" />
</children>
<children xsi:type="basic:PartStack"
xmi:id="_zovz1f4tEeWH250tPNcT9g" elementId="folderLeftBottom"
containerData="4000" selectedElement="_zovz1v4tEeWH250tPNcT9g">
<children xsi:type="advanced:Placeholder"
xmi:id="_zovz1v4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.views.ContentOutline"
ref="_zoqUQP4tEeWH250tPNcT9g" />
<children xsi:type="advanced:Placeholder"
xmi:id="_zovz1_4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.navigatorView"
ref="_zoq7UP4tEeWH250tPNcT9g" />
<children xsi:type="advanced:Placeholder"
xmi:id="_zovz2P4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.help.hintsView"
ref="_zot-oP4tEeWH250tPNcT9g" />
</children>
</children>
<children xsi:type="basic:PartSashContainer"
xmi:id="_zovz2f4tEeWH250tPNcT9g" containerData="7700"
selectedElement="_zovz2v4tEeWH250tPNcT9g" horizontal="true">
<children xsi:type="basic:PartSashContainer"
xmi:id="_zovz2v4tEeWH250tPNcT9g" containerData="8500"
selectedElement="_zovz2_4tEeWH250tPNcT9g">
<children xsi:type="advanced:Placeholder"
xmi:id="_zovz2_4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.editorss" containerData="7000"
ref="_zok0sP4tEeWH250tPNcT9g" />
<children xsi:type="basic:PartStack"
xmi:id="_zovz3P4tEeWH250tPNcT9g" elementId="folderBottom"
containerData="3000" selectedElement="_zovz3f4tEeWH250tPNcT9g">
<children xsi:type="advanced:Placeholder"
xmi:id="_zovz3f4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.propertiesView"
ref="_zoptMP4tEeWH250tPNcT9g" />
</children>
</children>
<children xsi:type="basic:PartStack"
xmi:id="_zovz3v4tEeWH250tPNcT9g" elementId="folderRight"
toBeRendered="false" containerData="1500">
<children xsi:type="advanced:Placeholder"
xmi:id="_zovz3_4tEeWH250tPNcT9g"
elementId="org.eclipse.gef.ui.palette_view"
toBeRendered="false" ref="_zoriYP4tEeWH250tPNcT9g" />
</children>
</children>
</children>
</children>
</children>
<children xsi:type="basic:PartStack"
xmi:id="_zkKOwf4tEeWH250tPNcT9g" elementId="stickyFolderRight"
toBeRendered="false" containerData="2500">
<children xsi:type="advanced:Placeholder"
xmi:id="_zkKOwv4tEeWH250tPNcT9g"
elementId="org.eclipse.help.ui.HelpView" toBeRendered="false"
ref="_zkJAoP4tEeWH250tPNcT9g" />
<children xsi:type="advanced:Placeholder"
xmi:id="_zkKOw_4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.internal.introview" toBeRendered="false"
ref="_zkJnsP4tEeWH250tPNcT9g" />
<children xsi:type="advanced:Placeholder"
xmi:id="_zkKOxP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView"
toBeRendered="false" ref="_zkJnsf4tEeWH250tPNcT9g" />
</children>
</children>
<sharedElements xsi:type="basic:Part"
xmi:id="_zkJAoP4tEeWH250tPNcT9g"
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">
<tags>View</tags>
<tags>categoryTag:Help</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part"
xmi:id="_zkJnsP4tEeWH250tPNcT9g"
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">
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part"
xmi:id="_zkJnsf4tEeWH250tPNcT9g"
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">
<tags>View</tags>
<tags>categoryTag:Help</tags>
</sharedElements>
<sharedElements xsi:type="advanced:Area"
xmi:id="_zok0sP4tEeWH250tPNcT9g" elementId="org.eclipse.ui.editorss"
selectedElement="_zok0sf4tEeWH250tPNcT9g">
<children xsi:type="basic:PartStack"
xmi:id="_zok0sf4tEeWH250tPNcT9g"
elementId="org.eclipse.e4.primaryDataStack">
<tags>org.eclipse.e4.primaryDataStack</tags>
<tags>EditorStack</tags>
</children>
</sharedElements>
<sharedElements xsi:type="basic:Part"
xmi:id="_zon4AP4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.treeModelView"
contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"
label="Models"
iconURI="platform:/plugin/org.rulez.magwas.zenta.editor/img/models.gif"
tooltip="" closeable="true">
<persistedState key="memento"
value="<?xml version="1.0" encoding="UTF-8"?>
<view>
<expanded>
<model elements="ecd59d1c 9aad5c4a" file="/devsec/EA.zenta"/>
<model elements="f5702f4a 073b35fa" file="/devsec/authdaemon.zenta"/>
</expanded>
</view>" />
<tags>View</tags>
<tags>categoryTag:Other</tags>
<tags>active</tags>
<tags>activeOnClose</tags>
<menus xmi:id="_zrcigP4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.treeModelView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_zrcigf4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.treeModelView" />
</sharedElements>
<sharedElements xsi:type="basic:Part"
xmi:id="_zoptMP4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.propertiesView"
contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"
label="Properties"
iconURI="platform:/plugin/org.rulez.magwas.zenta.editor/img/properties.gif"
tooltip="" closeable="true">
<persistedState key="memento"
value="<?xml version="1.0" encoding="UTF-8"?>
<view/>" />
<tags>View</tags>
<tags>categoryTag:Other</tags>
<menus xmi:id="_zxuwsP4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.propertiesView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_zxuwsf4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.propertiesView" />
</sharedElements>
<sharedElements xsi:type="basic:Part"
xmi:id="_zoqUQP4tEeWH250tPNcT9g"
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="memento"
value="<?xml version="1.0" encoding="UTF-8"?>
<view/>" />
<tags>View</tags>
<tags>categoryTag:General</tags>
<menus xmi:id="_zw64YP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.views.ContentOutline">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_zw64Yf4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.views.ContentOutline" />
</sharedElements>
<sharedElements xsi:type="basic:Part"
xmi:id="_zoq7UP4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.navigatorView"
contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"
label="Navigator"
iconURI="platform:/plugin/org.rulez.magwas.zenta.editor/img/navigator-16.png"
tooltip="" closeable="true">
<tags>View</tags>
<tags>categoryTag:Other</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part"
xmi:id="_zoriYP4tEeWH250tPNcT9g"
elementId="org.eclipse.gef.ui.palette_view"
contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"
label="Palette"
iconURI="platform:/plugin/org.eclipse.gef/icons/palette_view.gif"
tooltip="" closeable="true">
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part"
xmi:id="_zot-oP4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.help.hintsView"
contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView"
label="Hints"
iconURI="platform:/plugin/org.rulez.magwas.zenta.help/img/hint-16.png"
tooltip="" closeable="true">
<tags>View</tags>
<tags>categoryTag:Other</tags>
</sharedElements>
<trimBars xmi:id="_zOUhoP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.main.toolbar"
contributorURI="platform:/plugin/org.eclipse.ui.workbench">
<children xsi:type="menu:ToolBar"
xmi:id="_zlsf0P4tEeWH250tPNcT9g" elementId="toolbar_file">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolBar"
xmi:id="_zltG4P4tEeWH250tPNcT9g" elementId="toolbar_edit">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolBar"
xmi:id="_zltt8P4tEeWH250tPNcT9g" elementId="toolbar_views">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolBar"
xmi:id="_zm6n0P4tEeWH250tPNcT9g" elementId="additions"
toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator"
xmi:id="_zm6n0f4tEeWH250tPNcT9g" elementId="additions"
toBeRendered="false" />
</children>
<children xsi:type="menu:ToolBar"
xmi:id="_z7ES4P4tEeWH250tPNcT9g" elementId="group.editor"
toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator"
xmi:id="_z7ES4f4tEeWH250tPNcT9g" elementId="group.editor"
toBeRendered="false" />
</children>
<children xsi:type="menu:ToolControl"
xmi:id="_zm718P4tEeWH250tPNcT9g" 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>
</trimBars>
<trimBars xmi:id="_zOUhof4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.trim.status"
contributorURI="platform:/plugin/org.eclipse.ui.workbench"
side="Bottom">
<children xsi:type="menu:ToolControl"
xmi:id="_znGOAP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.StatusLine" toBeRendered="false"
contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
<tags>stretch</tags>
</children>
<children xsi:type="menu:ToolControl"
xmi:id="_zneBcP4tEeWH250tPNcT9g"
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="_zni58P4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.ProgressBar" toBeRendered="false"
contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
<tags>Draggable</tags>
</children>
</trimBars>
<trimBars xmi:id="_zOUhov4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.trim.vertical1"
contributorURI="platform:/plugin/org.eclipse.ui.workbench"
side="Left" />
<trimBars xmi:id="_zOUho_4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.trim.vertical2"
contributorURI="platform:/plugin/org.eclipse.ui.workbench"
side="Right" />
</children>
<bindingTables xmi:id="_zOUhpP4tEeWH250tPNcT9g"
contributorURI="platform:/plugin/org.eclipse.ui.workbench"
bindingContext="_zOUhpf4tEeWH250tPNcT9g">
<bindings xmi:id="_zQdPoP4tEeWH250tPNcT9g"
keySequence="CTRL+F10" command="_zPdxJ_4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQdPpP4tEeWH250tPNcT9g"
keySequence="CTRL+C" command="_zPV1Vf4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQd2sf4tEeWH250tPNcT9g"
keySequence="CTRL+A" command="_zPaGwP4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQd2s_4tEeWH250tPNcT9g"
keySequence="ALT+PAGE_UP" command="_zPdKFv4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQedwP4tEeWH250tPNcT9g"
keySequence="ALT+PAGE_DOWN" command="_zPat3P4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQedxf4tEeWH250tPNcT9g"
keySequence="SHIFT+INSERT" command="_zPbU6P4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQfr4f4tEeWH250tPNcT9g"
keySequence="CTRL+SHIFT+Z" command="_zPb7_v4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_zQfr4_4tEeWH250tPNcT9g"
keySequence="CTRL+V" command="_zPbU6P4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQivM_4tEeWH250tPNcT9g"
keySequence="CTRL+Z" command="_zPat4P4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQjWQ_4tEeWH250tPNcT9g"
keySequence="CTRL+X" command="_zPbU5_4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQj9Uv4tEeWH250tPNcT9g"
keySequence="CTRL+INSERT" command="_zPV1Vf4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQkkY_4tEeWH250tPNcT9g"
keySequence="SHIFT+DEL" command="_zPbU5_4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQkkZP4tEeWH250tPNcT9g"
keySequence="CTRL+SPACE" command="_zPYRmP4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQkkZf4tEeWH250tPNcT9g"
keySequence="CTRL+SHIFT+SPACE" command="_zPV1Wf4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
</bindingTables>
<bindingTables xmi:id="_zQTeoP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.contexts.window"
bindingContext="_zOUhpv4tEeWH250tPNcT9g">
<bindings xmi:id="_zQbacP4tEeWH250tPNcT9g"
keySequence="CTRL+," command="_zPbU7v4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQdPof4tEeWH250tPNcT9g"
keySequence="CTRL+W" command="_zPdKEv4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQdPov4tEeWH250tPNcT9g" keySequence="DEL"
command="_zPWcY_4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQdPo_4tEeWH250tPNcT9g"
keySequence="CTRL+SHIFT+S" command="_zPQVxP4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQd2sP4tEeWH250tPNcT9g"
keySequence="ALT+ARROW_LEFT" command="_zPdxKv4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQd2sv4tEeWH250tPNcT9g"
keySequence="ALT+ARROW_RIGHT" command="_zPcjBv4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQd2tP4tEeWH250tPNcT9g"
keySequence="CTRL+SHIFT+C" command="_zPat3f4tEeWH250tPNcT9g" />
<bindings xmi:id="_zQedwf4tEeWH250tPNcT9g"
keySequence="CTRL+E" command="_zPat2P4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQedwv4tEeWH250tPNcT9g"
keySequence="CTRL+SHIFT+E" command="_zPat2v4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQedw_4tEeWH250tPNcT9g"
keySequence="CTRL+D" command="_zPbU4v4tEeWH250tPNcT9g" />
<bindings xmi:id="_zQedxP4tEeWH250tPNcT9g"
keySequence="CTRL+F" command="_zPV1VP4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQfE0P4tEeWH250tPNcT9g"
keySequence="CTRL+." command="_zPbU6_4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQfE0f4tEeWH250tPNcT9g"
keySequence="CTRL+F4" command="_zPdKEv4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQfE0v4tEeWH250tPNcT9g"
keySequence="ALT+5" command="_zPaGw_4tEeWH250tPNcT9g" />
<bindings xmi:id="_zQfE0_4tEeWH250tPNcT9g"
keySequence="ALT+F7" command="_zPbU6f4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQfE1P4tEeWH250tPNcT9g"
keySequence="CTRL+F7" command="_zPV1Vv4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQfr4P4tEeWH250tPNcT9g"
keySequence="ALT+2" command="_zPYRnf4tEeWH250tPNcT9g" />
<bindings xmi:id="_zQfr4v4tEeWH250tPNcT9g"
keySequence="CTRL+SHIFT+NUMPAD_DIVIDE"
command="_zPWcZP4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQfr5P4tEeWH250tPNcT9g" keySequence="F12"
command="_zPYRmv4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQfr5f4tEeWH250tPNcT9g"
keySequence="CTRL+F6" command="_zPV1XP4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQgS8P4tEeWH250tPNcT9g"
keySequence="ALT+4" command="_zPdxJv4tEeWH250tPNcT9g" />
<bindings xmi:id="_zQgS8f4tEeWH250tPNcT9g"
keySequence="ALT+-" command="_zPYRm_4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQgS8v4tEeWH250tPNcT9g" keySequence="F11"
command="_zPRj4f4tEeWH250tPNcT9g">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_zQgS8_4tEeWH250tPNcT9g"
keySequence="CTRL+M" command="_zPXqgf4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQg6AP4tEeWH250tPNcT9g"
keySequence="CTRL+M" command="_zPat0f4tEeWH250tPNcT9g" />
<bindings xmi:id="_zQhhEP4tEeWH250tPNcT9g"
keySequence="CTRL+{" command="_zPWcYP4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
<parameters xmi:id="_zQhhEf4tEeWH250tPNcT9g"
elementId="Splitter.isHorizontal" name="Splitter.isHorizontal"
value="false" />
</bindings>
<bindings xmi:id="_zQhhEv4tEeWH250tPNcT9g" keySequence="F5"
command="_zPeYMv4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQiIIP4tEeWH250tPNcT9g"
keySequence="CTRL+O" command="_zPV1V_4tEeWH250tPNcT9g" />
<bindings xmi:id="_zQiIIf4tEeWH250tPNcT9g" keySequence="F2"
command="_zPb79P4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQiIIv4tEeWH250tPNcT9g"
keySequence="CTRL+SHIFT+O" command="_zPat3_4tEeWH250tPNcT9g" />
<bindings xmi:id="_zQiII_4tEeWH250tPNcT9g"
keySequence="CTRL+-" command="_zPV1Uf4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQiIJP4tEeWH250tPNcT9g"
keySequence="CTRL+P" command="_zPcjAP4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQivMP4tEeWH250tPNcT9g"
keySequence="CTRL+N" command="_zPcjA_4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQivMf4tEeWH250tPNcT9g"
keySequence="CTRL+N" command="_zPat2f4tEeWH250tPNcT9g" />
<bindings xmi:id="_zQivMv4tEeWH250tPNcT9g"
keySequence="CTRL+SHIFT+W" command="_zPbU5v4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQivNP4tEeWH250tPNcT9g"
keySequence="ALT+SHIFT+F7" command="_zPbU6v4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQjWQP4tEeWH250tPNcT9g"
keySequence="CTRL+SHIFT+F6" command="_zPV1Uv4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQjWQf4tEeWH250tPNcT9g"
keySequence="CTRL+SHIFT+F4" command="_zPbU5v4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQjWQv4tEeWH250tPNcT9g"
keySequence="ALT+CR" command="_zPRj4_4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQjWRP4tEeWH250tPNcT9g"
keySequence="ALT+1" command="_zPdxKP4tEeWH250tPNcT9g" />
<bindings xmi:id="_zQj9UP4tEeWH250tPNcT9g"
keySequence="CTRL+SHIFT+F7" command="_zPYRnP4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQj9Uf4tEeWH250tPNcT9g"
keySequence="ALT+3" command="_zPb7-P4tEeWH250tPNcT9g" />
<bindings xmi:id="_zQj9U_4tEeWH250tPNcT9g"
keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY"
command="_zPQVw_4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQj9VP4tEeWH250tPNcT9g"
keySequence="CTRL+S" command="_zPRj5f4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQkkYP4tEeWH250tPNcT9g"
keySequence="CTRL+_" command="_zPWcYP4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
<parameters xmi:id="_zQkkYf4tEeWH250tPNcT9g"
elementId="Splitter.isHorizontal" name="Splitter.isHorizontal"
value="true" />
</bindings>
<bindings xmi:id="_zQkkYv4tEeWH250tPNcT9g"
keySequence="CTRL+=" command="_zPdKF_4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
</bindings>
<bindings xmi:id="_zQnnsP4tEeWH250tPNcT9g"
keySequence="ALT+SHIFT+Q H" command="_zPYRn_4tEeWH250tPNcT9g">
<tags>schemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
<parameters xmi:id="_zQnnsf4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.views.showView.viewId"
name="org.eclipse.ui.views.showView.viewId"
value="org.eclipse.ui.cheatsheets.views.CheatSheetView" />
</bindings>
</bindingTables>
<bindingTables xmi:id="_zomp4f4tEeWH250tPNcT9g"
bindingContext="_zomp4P4tEeWH250tPNcT9g" />
<rootContext xmi:id="_zOUhpf4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.contexts.dialogAndWindow"
contributorURI="platform:/plugin/org.eclipse.ui.workbench"
name="In Dialogs and Windows"
description="Either a dialog or a window is open">
<children xmi:id="_zOUhpv4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.contexts.window"
contributorURI="platform:/plugin/org.eclipse.ui.workbench"
name="In Windows" description="A window is open">
<children xmi:id="_zOUhp_4tEeWH250tPNcT9g"
elementId="org.eclipse.e4.ui.contexts.views"
contributorURI="platform:/plugin/org.eclipse.ui.workbench"
name="%bindingcontext.name.bindingView" />
<children xmi:id="_zPmUAf4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.textEditorScope" name="Editing Text"
description="Editing Text Context" />
</children>
<children xmi:id="_zOUhqP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.contexts.dialog"
contributorURI="platform:/plugin/org.eclipse.ui.workbench"
name="In Dialogs" description="A dialog is open" />
</rootContext>
<rootContext xmi:id="_zPmUAP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.contexts.workbenchMenu"
name="Workbench Menu"
description="When no Workbench windows are active" />
<rootContext xmi:id="_zPmUAv4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.contexts.actionSet" name="Action Set"
description="Parent context for action sets" />
<rootContext xmi:id="_zomp4P4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.templates.actionSet"
name="Auto::org.rulez.magwas.zenta.templates.actionSet" />
<descriptors xmi:id="_zUBhAP4tEeWH250tPNcT9g"
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="_zUFLYP4tEeWH250tPNcT9g"
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">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_zUNHMP4tEeWH250tPNcT9g"
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">
<tags>View</tags>
<tags>categoryTag:Help</tags>
</descriptors>
<descriptors xmi:id="_zUNuQP4tEeWH250tPNcT9g"
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">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_zUOVUP4tEeWH250tPNcT9g"
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">
<tags>View</tags>
<tags>categoryTag:Help</tags>
</descriptors>
<descriptors xmi:id="_zUSmwP4tEeWH250tPNcT9g"
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">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_zUVDAP4tEeWH250tPNcT9g"
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">
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_zUaikP4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.treeModelView" label="Models"
iconURI="platform:/plugin/org.rulez.magwas.zenta.editor/img/models.gif"
tooltip="" category="Other" closeable="true"
contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Other</tags>
</descriptors>
<descriptors xmi:id="_zUbJoP4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.propertiesView"
label="Properties"
iconURI="platform:/plugin/org.rulez.magwas.zenta.editor/img/properties.gif"
tooltip="" category="Other" closeable="true"
contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Other</tags>
</descriptors>
<descriptors xmi:id="_zUdl4P4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.navigatorView"
label="Navigator"
iconURI="platform:/plugin/org.rulez.magwas.zenta.editor/img/navigator-16.png"
tooltip="" category="Other" closeable="true"
contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Other</tags>
</descriptors>
<descriptors xmi:id="_zUe0AP4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.help.hintsView" label="Hints"
iconURI="platform:/plugin/org.rulez.magwas.zenta.help/img/hint-16.png"
tooltip="" category="Other" closeable="true"
contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<tags>View</tags>
<tags>categoryTag:Other</tags>
</descriptors>
<commands xmi:id="_zPQVwP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor"
description="Pin the current editor"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPQVwf4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab"
description="Switch to the next tab"
category="_zPN5gv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPQVwv4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.quickAccess"
commandName="Quick Access" description="Quickly access UI elements"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPQVw_4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All"
description="Expand the current tree"
category="_zPN5gv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPQVxP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.file.saveAll" commandName="Save All"
description="Save all current contents"
category="_zPN5hf4tEeWH250tPNcT9g" />
<commands xmi:id="_zPRj4P4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.templates.modelFromTemplate"
commandName="New Model From Template"
category="_zPN5h_4tEeWH250tPNcT9g" />
<commands xmi:id="_zPRj4f4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.action.fullScreen"
commandName="Full Screen" category="_zPN5h_4tEeWH250tPNcT9g" />
<commands xmi:id="_zPRj4v4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.showKeyAssist"
commandName="Show Key Assist" description="Show the key assist dialog"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPRj4_4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.file.properties" commandName="Properties"
description="Display the properties of the selected item"
category="_zPN5hf4tEeWH250tPNcT9g" />
<commands xmi:id="_zPRj5P4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.file.closeOthers" commandName="Close Others"
description="Close all editors except the one that is active"
category="_zPN5hf4tEeWH250tPNcT9g" />
<commands xmi:id="_zPRj5f4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.file.save" commandName="Save"
description="Save the current contents"
category="_zPN5hf4tEeWH250tPNcT9g" />
<commands xmi:id="_zPVOQP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.preferences"
commandName="Preferences" description="Open the preferences dialog"
category="_zPN5hv4tEeWH250tPNcT9g">
<parameters xmi:id="_zPV1UP4tEeWH250tPNcT9g"
elementId="preferencePageId" name="Preference Page" />
</commands>
<commands xmi:id="_zPV1Uf4tEeWH250tPNcT9g"
elementId="org.eclipse.gef.zoom_out" commandName="Zoom Out"
description="Zoom Out" category="_zPN5g_4tEeWH250tPNcT9g" />
<commands xmi:id="_zPV1Uv4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.previousEditor"
commandName="Previous Editor"
description="Switch to the previous editor"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPV1U_4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.activeContextInfo"
commandName="Show activeContext Info"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPV1VP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.edit.findReplace"
commandName="Find and Replace" description="Find and replace text"
category="_zPN5hP4tEeWH250tPNcT9g" />
<commands xmi:id="_zPV1Vf4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.edit.copy" commandName="Copy"
description="Copy the selection to the clipboard"
category="_zPN5hP4tEeWH250tPNcT9g" />
<commands xmi:id="_zPV1Vv4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.nextView" commandName="Next View"
description="Switch to the next view"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPV1V_4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.action.openModel"
commandName="Open Model" category="_zPN5h_4tEeWH250tPNcT9g" />
<commands xmi:id="_zPV1WP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.help.tipsAndTricksAction"
commandName="Tips and Tricks"
description="Open the tips and tricks help page"
category="_zPN5if4tEeWH250tPNcT9g" />
<commands xmi:id="_zPV1Wf4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.edit.text.contentAssist.contextInformation"
commandName="Context Information"
description="Show Context Information"
category="_zPN5hP4tEeWH250tPNcT9g" />
<commands xmi:id="_zPV1Wv4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand"
commandName="Properties" category="_zPN5h_4tEeWH250tPNcT9g" />
<commands xmi:id="_zPV1W_4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.file.saveAs" commandName="Save As"
description="Save the current contents to another location"
category="_zPN5hf4tEeWH250tPNcT9g" />
<commands xmi:id="_zPV1XP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor"
description="Switch to the next editor"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPV1Xf4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.previousPerspective"
commandName="Previous Perspective"
description="Switch to the previous perspective"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPWcYP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.splitEditor"
commandName="Toggle Split Editor"
description="Split or join the currently active editor."
category="_zPN5hv4tEeWH250tPNcT9g">
<parameters xmi:id="_zPWcYf4tEeWH250tPNcT9g"
elementId="Splitter.isHorizontal" name="Orientation" optional="false" />
</commands>
<commands xmi:id="_zPWcYv4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.help.helpContents"
commandName="Help Contents" description="Open the help contents"
category="_zPN5if4tEeWH250tPNcT9g" />
<commands xmi:id="_zPWcY_4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.edit.delete" commandName="Delete"
description="Delete the selection" category="_zPN5hP4tEeWH250tPNcT9g" />
<commands xmi:id="_zPWcZP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.navigate.collapseAll"
commandName="Collapse All" description="Collapse the current tree"
category="_zPN5gv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPXqgP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into"
description="Navigate into the selected item"
category="_zPN5gv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPXqgf4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.maximizePart"
commandName="Maximize Active View or Editor"
description="Toggles maximize/restore state of active view or editor"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRkP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.lockToolBar"
commandName="Lock the Toolbars" description="Lock the Toolbars"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRkf4tEeWH250tPNcT9g"
elementId="org.eclipse.gef.ui.palette_view" commandName="Palette"
category="_zPN5gP4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRkv4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.file.exit" commandName="Exit"
description="Exit the application" category="_zPN5hf4tEeWH250tPNcT9g">
<parameters xmi:id="_zPYRk_4tEeWH250tPNcT9g"
elementId="mayPrompt" name="may prompt" />
</commands>
<commands xmi:id="_zPYRlP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.newEditor" commandName="New Editor"
description="Open another editor on the active editor's input"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRlf4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.minimizePart"
commandName="Minimize Active View or Editor"
description="Minimizes the active view or editor"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRlv4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark"
description="Add a bookmark" category="_zPN5hP4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRl_4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.help.command.website"
commandName="Zenta on the Web" category="_zPN5h_4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRmP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.edit.text.contentAssist.proposals"
commandName="Content Assist" description="Content Assist"
category="_zPN5hP4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRmf4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.navigate.up" commandName="Up"
description="Navigate up one level" category="_zPN5gv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRmv4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.activateEditor"
commandName="Activate Editor" description="Activate the editor"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRm_4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.showSystemMenu"
commandName="Show System Menu" description="Show the system menu"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRnP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.previousView"
commandName="Previous View" description="Switch to the previous view"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRnf4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.action.showPropertiesView"
commandName="Show Properties View" category="_zPN5h_4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRnv4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.file.revert" commandName="Revert"
description="Revert to the last saved state"
category="_zPN5hf4tEeWH250tPNcT9g" />
<commands xmi:id="_zPYRn_4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.views.showView" commandName="Show View"
description="Shows a particular view"
category="_zPN5gP4tEeWH250tPNcT9g">
<parameters xmi:id="_zPYRoP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.views.showView.viewId" name="View" />
<parameters xmi:id="_zPYRof4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.views.showView.secondaryId"
name="Secondary Id" />
<parameters xmi:id="_zPYRov4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.views.showView.makeFast" name="As FastView" />
</commands>
<commands xmi:id="_zPaGwP4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.edit.selectAll" commandName="Select All"
description="Select all" category="_zPN5hP4tEeWH250tPNcT9g" />
<commands xmi:id="_zPaGwf4tEeWH250tPNcT9g"
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="_zPN5if4tEeWH250tPNcT9g" />
<commands xmi:id="_zPaGwv4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.savePerspective"
commandName="Save Perspective As"
description="Save the current perspective"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPaGw_4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.action.showPaletteView"
commandName="Show Palette View" category="_zPN5h_4tEeWH250tPNcT9g" />
<commands xmi:id="_zPat0P4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.edit.move" commandName="Move..."
description="Move the selected item"
category="_zPN5hf4tEeWH250tPNcT9g" />
<commands xmi:id="_zPat0f4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.action.closeModel"
commandName="Close Model" category="_zPN5h_4tEeWH250tPNcT9g" />
<commands xmi:id="_zPat0v4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.file.import" commandName="Import"
description="Import" category="_zPN5hf4tEeWH250tPNcT9g">
<parameters xmi:id="_zPat0_4tEeWH250tPNcT9g"
elementId="importWizardId" name="Import Wizard" />
</commands>
<commands xmi:id="_zPat1P4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.perspectives.showPerspective"
commandName="Show Perspective"
description="Show a particular perspective"
category="_zPN5gf4tEeWH250tPNcT9g">
<parameters xmi:id="_zPat1f4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId"
name="Parameter" />
<parameters xmi:id="_zPat1v4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.perspectives.showPerspective.newWindow"
name="In New Window" />
</commands>
<commands xmi:id="_zPat1_4tEeWH250tPNcT9g"
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="_zPN5gv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPat2P4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.openEditorDropDown"
commandName="Quick Switch Editor"
description="Open the editor drop down list"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPat2f4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.action.newModel"
commandName="New Model" category="_zPN5h_4tEeWH250tPNcT9g" />
<commands xmi:id="_zPat2v4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.switchToEditor"
commandName="Switch to Editor" description="Switch to an editor"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPat2_4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.help.dynamicHelp" commandName="Dynamic Help"
description="Open the dynamic help" category="_zPN5if4tEeWH250tPNcT9g" />
<commands xmi:id="_zPat3P4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.navigate.nextSubTab"
commandName="Next Sub-Tab" description="Switch to the next sub-tab"
category="_zPN5gv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPat3f4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.action.exportAsImageToClipboard"
commandName="Export As Image to Clipboard"
category="_zPN5h_4tEeWH250tPNcT9g" />
<commands xmi:id="_zPat3v4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.window.resetPerspective"
commandName="Reset Perspective"
description="Reset the current perspective to its default state"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPat3_4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.action.openDiagram"
commandName="Open Diagram" category="_zPN5h_4tEeWH250tPNcT9g" />
<commands xmi:id="_zPat4P4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.edit.undo" commandName="Undo"
description="Undo the last operation"
category="_zPN5hP4tEeWH250tPNcT9g" />
<commands xmi:id="_zPbU4P4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.cheatsheets.openCheatSheet"
commandName="Open Cheat Sheet" description="Open a Cheat Sheet."
category="_zPN5if4tEeWH250tPNcT9g">
<parameters xmi:id="_zPbU4f4tEeWH250tPNcT9g"
elementId="cheatSheetId" name="Identifier" />
</commands>
<commands xmi:id="_zPbU4v4tEeWH250tPNcT9g"
elementId="org.rulez.magwas.zenta.editor.action.duplicate"
commandName="Duplicate" category="_zPN5h_4tEeWH250tPNcT9g" />
<commands xmi:id="_zPbU4_4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.file.closePart" commandName="Close Part"
description="Close the active workbench part"
category="_zPN5hv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPbU5P4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.help.installationDialog"
commandName="Installation Information"
description="Open the installation dialog"
category="_zPN5if4tEeWH250tPNcT9g" />
<commands xmi:id="_zPbU5f4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.navigate.back" commandName="Back"
description="Navigate back" category="_zPN5gv4tEeWH250tPNcT9g" />
<commands xmi:id="_zPbU5v4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.file.closeAll" commandName="Close All"
description="Close all editors" category="_zPN5hf4tEeWH250tPNcT9g" />
<commands xmi:id="_zPbU5_4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.edit.cut" commandName="Cut"
description="Cut the selection to the clipboard"
category="_zPN5hP4tEeWH250tPNcT9g" />
<commands xmi:id="_zPbU6P4tEeWH250tPNcT9g"
elementId="org.eclipse.ui.edit.paste" commandName="Paste"