forked from usethesource/rascal-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
865 lines (840 loc) · 29.6 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
<extension
point="org.eclipse.core.runtime.preferences">
</extension>
<extension
point="org.eclipse.core.variables.valueVariables">
</extension>
<extension
id="rascal.markerType.sourceLocationBreakpoint"
name="Rascal Source Location Breakpoint"
point="org.eclipse.core.resources.markers">
<super
type="org.eclipse.debug.core.lineBreakpointMarker">
</super>
<persistent
value="true">
</persistent>
</extension>
<extension
point="org.eclipse.core.runtime.adapters">
<factory
adaptableType="org.rascalmpl.eclipse.editor.RascalEditor"
class="org.rascalmpl.eclipse.debug.ui.breakpoints.RascalEditorAdapterFactory">
<adapter
type="org.eclipse.debug.ui.actions.IToggleBreakpointsTarget">
</adapter>
</factory>
</extension>
<extension
id="rascal_nature"
name="rascal_nature"
point="org.eclipse.core.resources.natures">
<runtime>
<run
class="org.rascalmpl.eclipse.nature.Nature">
</run>
</runtime>
<builder
id="rascal_builder">
</builder>
</extension>
<extension
point="org.eclipse.core.filesystem.filesystems">
<filesystem
scheme="rascal-library">
<run
class="org.rascalmpl.eclipse.nature.RascalLibraryFileSystem">
</run>
</filesystem>
</extension>
<extension
point="org.eclipse.imp.runtime.languageDescription">
<language
description="Source analysis and manipulation language"
extensions="rsc"
icon="icons/rascal3D_2-32px.gif"
language="Rascal">
</language>
</extension>
<extension
id="rascal-eclipse.parserWrapper"
name="Rascal Parser Wrapper"
point="org.eclipse.imp.runtime.parser">
<parser
class="org.rascalmpl.eclipse.editor.ParseController"
language="Rascal">
</parser>
</extension>
<extension
point="org.eclipse.imp.runtime.tokenColorer">
<tokenColorer
class="org.rascalmpl.eclipse.editor.TokenColorer"
language="Rascal">
</tokenColorer>
</extension>
<extension
point="org.eclipse.imp.runtime.labelProvider">
<labelProvider
class="org.rascalmpl.eclipse.outline.LabelProvider"
language="Rascal">
</labelProvider>
</extension>
<extension
point="org.eclipse.imp.runtime.modelTreeBuilder">
<treeBuilder
class="org.rascalmpl.eclipse.outline.TreeModelBuilder"
language="Rascal">
</treeBuilder>
</extension>
<extension
point="org.eclipse.imp.runtime.documentationProvider">
<docProvider
class="org.rascalmpl.eclipse.editor.DocumentationProvider"
language="Rascal">
</docProvider>
</extension>
<extension
point="org.eclipse.imp.runtime.parser">
<parser
class="org.rascalmpl.eclipse.terms.TermParseController"
language="Terms">
</parser>
</extension>
<extension
point="org.eclipse.imp.runtime.languageDescription">
<language
description="Abstract language which all Rascal-based implementations of languages are derived from to allow on-the-fly extension of the Eclipse IDE"
extensions="trm"
initializerClass="org.rascalmpl.eclipse.nature.InitializeRascalPlugins"
language="Terms">
</language>
</extension>
<extension
point="org.eclipse.imp.runtime.hyperLink">
<hyperlinkDetector
class="org.rascalmpl.eclipse.editor.HyperlinkDetector"
language="Rascal">
</hyperlinkDetector>
</extension>
<extension
point="org.eclipse.imp.runtime.documentationProvider">
<docProvider
class="org.rascalmpl.eclipse.editor.DocumentationProvider"
language="Terms">
</docProvider>
</extension>
<extension
point="org.eclipse.imp.runtime.hyperLink">
<hyperlinkDetector
class="org.rascalmpl.eclipse.editor.HyperlinkDetector"
language="Terms">
</hyperlinkDetector>
</extension>
<extension
point="org.eclipse.imp.runtime.tokenColorer">
<tokenColorer
class="org.rascalmpl.eclipse.editor.TokenColorer"
language="Terms">
</tokenColorer>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
class="org.rascalmpl.eclipse.perspective.Factory"
fixed="false"
icon="icons/rascal3D_2-16px.gif"
id="rascal.perspective"
name="Rascal">
</perspective>
</extension>
<extension
point="org.eclipse.ui.editors">
<editor
class="org.rascalmpl.eclipse.editor.RascalEditor"
default="true"
extensions="rsc"
filenames="*.rsc"
icon="icons/rascal3D_2-16px.gif"
id="rascal.editor"
name="Rascal Editor">
</editor>
<editor
class="org.rascalmpl.eclipse.library.vis.FigureViewer"
default="false"
id="rascal-eclipse.Figure.viewer"
name="Figure Viewer">
</editor>
</extension>
<extension
point="org.eclipse.ui.popupMenus">
<viewerContribution
id="rascal.editorpopupmenu"
targetID="rascal.editor.contextMenu">
<action
class="org.rascalmpl.eclipse.perspective.actions.LaunchConsoleAction"
icon="icons/rascal3D_2-16px.gif"
id="rascal.launchconsole"
label="Launch Console"
menubarPath="additions"
tooltip="Launch a console with a command prompt">
</action>
<action
class="org.rascalmpl.eclipse.perspective.actions.ResetProjectState"
icon="icons/rascal3D_2-16px.gif"
id="rascal.resetproject"
label="Reset Project State"
menubarPath="additions"
tooltip="Reset the state of the interpreter associated with the current project.">
</action>
<action
class="org.rascalmpl.eclipse.perspective.actions.RunStaticChecker"
icon="icons/rascal3D_2-16px.gif"
id="rascal-eclipse.editor.context.runStaticChecker"
label="Run static checker"
menubarPath="additions"
tooltip="Statically checks the contents of the current editor">
</action>
<action
class="org.rascalmpl.eclipse.perspective.actions.ReloadStaticChecker"
icon="icons/rascal3D_2-16px.gif"
id="rascal-eclipse.editor.context.reloadStaticChecker"
label="Reload static checker"
menubarPath="additions"
tooltip="Reloads the static checker">
</action>
<action
class="org.rascalmpl.eclipse.perspective.actions.RunAmbiDexter"
icon="icons/ambidexter-a-16.png"
id="rascal-eclipse.editor.context.runAmbiDexter"
label="Run AmbiDexter"
menubarPath="additions"
tooltip="Statically detects ambiguity in Rascal syntax definitions">
</action>
<action
class="org.rascalmpl.eclipse.perspective.actions.ListAmbiguities"
icon="icons/ambidexter-a-16.png"
id="rascal-eclipse.editor.context.listAmbiguities"
label="List Ambiguities"
menubarPath="additions"
tooltip="Lists all ambiguous sub-strings of the current editor">
</action>
<action
class="org.rascalmpl.eclipse.perspective.actions.TextTree"
icon="icons/rascal3D_2-16px.gif"
id="rascal.editor.context.texttree"
label="Show Textual Parse Tree"
menubarPath="additions">
</action>
<action
class="org.rascalmpl.eclipse.perspective.actions.BrowseTree"
icon="icons/rascal3D_2-16px.gif"
id="rascal.editor.context.browsetree"
label="Show Browsable Parse Tree"
menubarPath="additions">
</action>
<action
class="org.rascalmpl.eclipse.perspective.actions.CopyToConsole"
icon="icons/rascal3D_2-16px.gif"
id="rascal-eclipse.editor.context.copyToConsole"
label="Copy to console"
menubarPath="additions"
tooltip="Copy the current selection to the currently active console (if any) and execute the command">
</action>
</viewerContribution>
<objectContribution
id="rascal.project"
objectClass="org.eclipse.core.resources.IResource">
<action
class="org.rascalmpl.eclipse.perspective.actions.LaunchConsoleAction"
icon="icons/rascal3D_2-16px.gif"
id="rascal.launchconsole"
label="Launch Console">
</action>
<action
class="org.rascalmpl.eclipse.perspective.actions.ResetProjectState"
icon="icons/rascal3D_2-16px.gif"
id="rascal.resetproject"
label="Reset Project">
</action>
</objectContribution>
</extension>
<extension
point="org.eclipse.ui.views">
<view
class="org.rascalmpl.eclipse.debug.ui.views.FunctionView"
icon="icons/rascal3D_2-16px.gif"
id="rascal-eclipse.functionview"
name="Rascal functions"
restorable="true">
</view>
<view
class="org.rascalmpl.eclipse.console.HistoryView"
id="rascal-eclipse.history-view"
name="History"
restorable="true">
</view>
</extension>
<extension
point="org.eclipse.ui.contexts">
<context
description="Debugging Rascal Programs"
id="rascal.debugging"
name="Debugging Rascal Programs"
parentId="org.eclipse.debug.ui.debugging">
</context>
</extension>
<extension
id="rascal.editorContribution"
name="rascalEditorContribution"
point="org.eclipse.ui.editorActions">
<editorContribution
id="rascal.editorContribution"
targetID="rascal.editor">
<action
actionID="RulerDoubleClick"
class="org.eclipse.debug.ui.actions.RulerToggleBreakpointActionDelegate"
id="rascal.doubleClickBreakpointAction"
label="Double click breakpoint action"
style="push">
</action>
</editorContribution>
</extension>
<extension
id="rascal.bindings"
name="Rascal key bindings"
point="org.eclipse.ui.bindings">
<key
commandId="rascal-eclipse.EvalExpression"
contextId="rascal.debugging"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+E">
</key>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="org.rascalmpl.eclipse.perspective.actions.EvaluateExpression"
id="rascal-eclipse.EvalExpression"
name="Evaluate Expression">
</command>
<command
defaultHandler="org.rascalmpl.eclipse.perspective.actions.CopyToConsole"
description="Copy current selection to active console"
id="rascal-eclipse.copyToConsole"
name="Copy to console">
</command>
</extension>
<extension
point="org.eclipse.ui.newWizards">
<wizard
category="rascal_eclipse"
class="org.rascalmpl.eclipse.wizards.RascalProjectWizard"
descriptionImage="icons/rascal3D_2-16px.gif"
finalPerspective="rascal.perspective"
icon="icons/rascal3D_2-32px.png"
id="rascal-eclipse.projectwizard"
name="Rascal Project"
project="true">
</wizard>
<category
id="rascal_eclipse"
name="Rascal">
</category>
<wizard
category="rascal_eclipse"
class="org.rascalmpl.eclipse.wizards.NewRascalFile"
icon="icons/rascal3D_2-32px.png"
id="rascal_eclipse.wizards.NewRascalFile"
name="Rascal File">
</wizard>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.debug.ui.DebugPerspective">
<view
id="rascal-eclipse.functionview"
relationship="right"
relative="org.eclipse.debug.ui.VariableView"
visible="false">
</view>
</perspectiveExtension>
</extension>
<extension
point="org.eclipse.ui.ide.projectNatureImages">
<image
icon="icons/rascal3D_2-32px.png"
id="rascal_nature.image"
natureId="rascal_nature">
</image>
</extension>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="org.rascalmpl.eclipse.launch.LaunchDelegate"
id="rascal.launchType"
modes="run, debug"
name="Rascal Application"
sourceLocatorId="rascal-eclipse.sourceLocator"
sourcePathComputerId="rascal-eclipse.sourcePathComputer">
</launchConfigurationType>
</extension>
<extension
point="org.eclipse.debug.core.breakpoints">
<breakpoint
class="org.rascalmpl.eclipse.debug.core.breakpoints.RascalSourceLocationBreakpoint"
id="rascal.sourceLocationBreakpoint"
markerType="rascal.markerType.sourceLocationBreakpoint"
name="Rascal Source Location Breakpoint">
</breakpoint>
</extension>
<extension
point="org.eclipse.debug.core.sourceLocators">
<sourceLocator
class="org.rascalmpl.eclipse.debug.core.sourcelookup.RascalSourceLookupDirector"
id="rascal-eclipse.sourceLocator"
name="Rascal source Locator">
</sourceLocator>
</extension>
<extension
point="org.eclipse.debug.core.sourcePathComputers">
<sourcePathComputer
class="org.rascalmpl.eclipse.debug.core.sourcelookup.RascalSourcePathComputerDelegate"
id="rascal-eclipse.sourcePathComputer">
</sourcePathComputer>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class="org.rascalmpl.eclipse.launch.TabGroup"
description="Specify and launch a Rascal program"
id="rascal.tabGroup"
type="rascal.launchType">
</launchConfigurationTabGroup>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTypeImages">
<launchConfigurationTypeImage
icon="icons/rascal3D_2-16px.gif"
configTypeID="rascal.launchType"
id="rascal.typeImage"/>
</extension>
<extension
point="org.eclipse.debug.ui.launchShortcuts">
<shortcut
label="Rascal Application"
icon="icons/rascal3D_2-16px.gif"
class="org.rascalmpl.eclipse.launch.LaunchShortcut"
modes="run, debug"
id="rascal.launchShortcut">
<contextualLaunch>
<enablement>
<with variable="selection">
<count value="1"/>
<iterate>
<test
value="*.rsc"
property="org.eclipse.debug.ui.matchesPattern"/>
</iterate>
</with>
</enablement>
</contextualLaunch>
</shortcut>
</extension>
<extension
point="org.eclipse.debug.ui.debugModelPresentations">
<debugModelPresentation
class="org.rascalmpl.eclipse.debug.ui.presentation.RascalModelPresentation"
id="rascal.debugModel"/>
</extension>
<extension
point="org.eclipse.debug.ui.contextViewBindings">
<contextViewBinding
contextId="rascal.debugging"
viewId="rascal-eclipse.functionview">
</contextViewBinding>
</extension>
<extension
point="org.eclipse.debug.ui.debugModelContextBindings">
<modelContextBinding
contextId="rascal.debugging"
debugModelId="rascal.debugModel">
</modelContextBinding>
</extension>
<extension
point="org.eclipse.ui.actionSets">
<actionSet
id="rascal_eclipse.rascalActionSet"
label="Rascal Action Set"
visible="true">
<menu
id="Rascal"
label="Rascal">
</menu>
<action
class="org.rascalmpl.eclipse.perspective.actions.StartTutorAction"
id="Tutor"
label="Start &Tutor"
menubarPath="rascal/rascalGroup"
tooltip="Start Rascal Tutor">
</action>
</actionSet>
</extension>
<extension
point="org.eclipse.imp.runtime.languageRegistrar">
<languageRegistrar
class="org.rascalmpl.eclipse.nature.InitializeRascalPlugins"
id="rascalStarter"></languageRegistrar>
</extension>
<extension point="org.eclipse.core.resources.markers"
id="rascal.markerType.queryResult"
name="Rascal Marker">
<super type="rascal_eclipse.rascal_markers"/>
<persistent value="true"/>
</extension>
<extension
point="org.eclipse.ui.editors.annotationTypes">
<type
markerType="rascal_eclipse.rascal_markers"
name="rascal.highlight0"
markerSeverity="0">
</type>
<type
markerType="rascal_eclipse.rascal_markers"
name="rascal.highlight1"
markerSeverity="0">
</type>
<type
markerType="rascal_eclipse.rascal_markers"
name="rascal.highlight2"
markerSeverity="0">
</type>
<type
markerType="rascal_eclipse.rascal_markers"
name="rascal.highlight3"
markerSeverity="0">
</type>
<type
markerType="rascal_eclipse.rascal_markers"
name="rascal.highlight4"
markerSeverity="0">
</type>
</extension>
<extension
point="org.eclipse.ui.editors.markerAnnotationSpecification"
id="rascal.highlight1Marker">
<specification
annotationType="rascal.highlight0"
colorPreferenceKey="Highlight0ColorPreferenceKey"
colorPreferenceValue="255,192,203"
contributesToHeader="false"
highlightPreferenceKey="Highlight0HighLightPreferenceKey"
highlightPreferenceValue="true"
includeOnPreferencePage="false"
isGoToNextNavigationTarget="true"
isGoToPreviousNavigationTarget="true"
overviewRulerPreferenceKey="Highlight0OverViewPreferenceKey"
overviewRulerPreferenceValue="true"
presentationLayer="4"
showInNextPrevDropdownToolbarAction="true"
textPreferenceKey="Highlight0TextPreferenceKey"
textPreferenceValue="true"
textStylePreferenceKey="Highlight0StylePreferenceKey"
textStylePreferenceValue="BOX"
verticalRulerPreferenceKey="Highlight0VerticalRulerPreferenceKey"
verticalRulerPreferenceValue="true">
</specification>
</extension>
<extension
point="org.eclipse.ui.editors.markerAnnotationSpecification"
id="rascal.highlight1Marker">
<specification
annotationType="rascal.highlight1"
colorPreferenceKey="Highlight1ColorPreferenceKey"
colorPreferenceValue="255,255,0"
contributesToHeader="false"
highlightPreferenceKey="Highlight1HighLightPreferenceKey"
highlightPreferenceValue="true"
includeOnPreferencePage="false"
isGoToNextNavigationTarget="true"
isGoToPreviousNavigationTarget="true"
overviewRulerPreferenceKey="Highlight1OverViewPreferenceKey"
overviewRulerPreferenceValue="true"
presentationLayer="4"
showInNextPrevDropdownToolbarAction="true"
textPreferenceKey="Highlight1TextPreferenceKey"
textPreferenceValue="true"
textStylePreferenceKey="Highlight1StylePreferenceKey"
textStylePreferenceValue="BOX"
verticalRulerPreferenceKey="Highlight1VerticalRulerPreferenceKey"
verticalRulerPreferenceValue="true">
</specification>
</extension>
<extension
point="org.eclipse.ui.editors.markerAnnotationSpecification"
id="rascal.highlight2Marker">
<specification
annotationType="rascal.highlight2"
colorPreferenceKey="Highlight2ColorPreferenceKey"
colorPreferenceValue="255,0,255"
contributesToHeader="false"
highlightPreferenceKey="Highlight2HighLightPreferenceKey"
highlightPreferenceValue="true"
includeOnPreferencePage="false"
isGoToNextNavigationTarget="true"
isGoToPreviousNavigationTarget="true"
overviewRulerPreferenceKey="Highlight2OverViewPreferenceKey"
overviewRulerPreferenceValue="true"
presentationLayer="4"
showInNextPrevDropdownToolbarAction="true"
textPreferenceKey="Highlight2TextPreferenceKey"
textPreferenceValue="true"
textStylePreferenceKey="Highlight2StylePreferenceKey"
textStylePreferenceValue="BOX"
verticalRulerPreferenceKey="Highlight2VerticalRulerPreferenceKey"
verticalRulerPreferenceValue="true">
</specification>
</extension>
<extension
point="org.eclipse.ui.editors.markerAnnotationSpecification"
id="rascal.highlight3Marker">
<specification
annotationType="rascal.highlight3"
colorPreferenceKey="Highlight3ColorPreferenceKey"
colorPreferenceValue="0,255,255"
contributesToHeader="false"
highlightPreferenceKey="Highlight3HighLightPreferenceKey"
highlightPreferenceValue="true"
includeOnPreferencePage="false"
isGoToNextNavigationTarget="true"
isGoToPreviousNavigationTarget="true"
overviewRulerPreferenceKey="Highlight3OverViewPreferenceKey"
overviewRulerPreferenceValue="true"
presentationLayer="4"
showInNextPrevDropdownToolbarAction="true"
textPreferenceKey="Highlight3TextPreferenceKey"
textPreferenceValue="true"
textStylePreferenceKey="Highlight3StylePreferenceKey"
textStylePreferenceValue="BOX"
verticalRulerPreferenceKey="Highlight3VerticalRulerPreferenceKey"
verticalRulerPreferenceValue="true">
</specification>
</extension>
<extension
point="org.eclipse.ui.editors.markerAnnotationSpecification"
id="rascal.highlight4Marker">
<specification
annotationType="rascal.highlight4"
colorPreferenceKey="Highlight4ColorPreferenceKey"
colorPreferenceValue="0,255,0"
contributesToHeader="false"
highlightPreferenceKey="Highlight4HighLightPreferenceKey"
highlightPreferenceValue="true"
includeOnPreferencePage="false"
isGoToNextNavigationTarget="true"
isGoToPreviousNavigationTarget="true"
overviewRulerPreferenceKey="Highlight4OverViewPreferenceKey"
overviewRulerPreferenceValue="true"
presentationLayer="4"
showInNextPrevDropdownToolbarAction="true"
textPreferenceKey="Highlight4TextPreferenceKey"
textPreferenceValue="true"
textStylePreferenceKey="Highlight4StylePreferenceKey"
textStylePreferenceValue="BOX"
verticalRulerPreferenceKey="Highlight4VerticalRulerPreferenceKey"
verticalRulerPreferenceValue="true">
</specification>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="popup:#CompilationUnitEditorContext">
<dynamic
class="org.rascalmpl.eclipse.library.util.NonRascalMenuContributionItem"
id="org.rascalmpl.eclipse.library.util.NonRascalMenuContributionItem.dynamic1">
</dynamic>
</menuContribution>
<menuContribution
locationURI="popup:#TextEditorContext">
<dynamic
class="org.rascalmpl.eclipse.library.util.NonRascalMenuContributionItem"
id="org.rascalmpl.eclipse.library.util.NonRascalMenuContributionItem.dynamic2">
</dynamic>
</menuContribution>
<menuContribution
locationURI="popup:#ClassFileEditorContext">
<dynamic
class="org.rascalmpl.eclipse.library.util.NonRascalMenuContributionItem"
id="org.rascalmpl.eclipse.library.util.NonRascalMenuContributionItem.dynamic3">
</dynamic>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.themes">
<fontDefinition
id="rascal-eclipse.printerFontDefinition"
label="Printer Font"
value="Monospace-regular-6">
</fontDefinition>
</extension>
<extension
id="rascal.markerType.testResult"
name="Rascal Test Result"
point="org.eclipse.core.resources.markers">
<persistent
value="true">
</persistent>
<super
type="rascal_eclipse.rascal_markers">
</super>
</extension>
<extension
point="org.eclipse.imp.runtime.modelTreeBuilder">
<treeBuilder
class="org.rascalmpl.eclipse.terms.TreeModelBuilder"
language="Terms">
</treeBuilder>
</extension>
<extension
point="org.eclipse.imp.runtime.labelProvider">
<labelProvider
class="org.rascalmpl.eclipse.terms.LabelProvider"
language="Terms">
</labelProvider>
</extension>
<extension
point="org.eclipse.imp.runtime.foldingUpdater">
<foldingUpdater
class="org.rascalmpl.eclipse.terms.FoldingUpdater"
language="Terms">
</foldingUpdater>
</extension>
<extension
point="org.eclipse.imp.runtime.editorActionContributions">
<editorActionContributor
class="org.rascalmpl.eclipse.terms.ActionContributor"
language="Terms">
</editorActionContributor>
</extension>
<extension
point="org.eclipse.ltk.core.refactoring.renameParticipants">
<renameParticipant
class="org.rascalmpl.eclipse.refactoring.RenameParticipant"
id="rascal-eclipse.rename"
name="Rename Rascal Module">
<enablement>
<instanceof
value="org.eclipse.core.resources.IFile">
</instanceof>
</enablement>
</renameParticipant>
</extension>
<extension
point="org.eclipse.imp.runtime.foldingUpdater">
<foldingUpdater
class="org.rascalmpl.eclipse.terms.FoldingUpdater"
language="rascal">
</foldingUpdater>
</extension>
<extension
point="org.eclipse.ui.views">
<view
allowMultiple="false"
class="org.rascalmpl.eclipse.ambidexter.ReportView"
icon="icons/ambidexter-a-16.png"
id="rascal-eclipse.ambidexter.report"
name="Ambiguity reports"
restorable="true">
</view>
</extension>
<extension
point="org.eclipse.ui.views">
<view
allowMultiple="false"
class="org.rascalmpl.eclipse.console.internal.StdAndErrorViewPart"
icon="icons/rascal3D_2-16px.gif"
id="rascal-eclipse.outputview"
name="Output"
restorable="true">
</view>
</extension>
<extension
point="org.eclipse.imp.runtime.editorActionContributions">
<editorActionContributor
class="org.rascalmpl.eclipse.editor.ActionsContributor"
language="rascal">
</editorActionContributor>
</extension>
<extension
id="term_builder"
name="term_builder"
point="org.eclipse.core.resources.builders">
<builder>
<run
class="org.rascalmpl.eclipse.terms.Builder">
</run>
</builder>
</extension>
<extension
id="term_markers"
name="term_markers"
point="org.eclipse.core.resources.markers">
<super
type="rascal_eclipse.rascal_markers">
</super>
<persistent
value="true">
</persistent>
</extension>
<extension
id="term_nature"
name="term_nature"
point="org.eclipse.core.resources.natures">
<runtime>
<run
class="org.rascalmpl.eclipse.terms.TermNature">
</run>
</runtime>
<builder
id="term_builder">
</builder>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="org.rascalmpl.eclipse.preferences.Page"
id="rascal-eclipse.preferencePage"
name="Rascal">
</page>
</extension>
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="org.rascalmpl.eclipse.preferences.Initializer">
</initializer>
</extension>
<extension
id="rascal_builder"
name="rascal_builder"
point="org.eclipse.core.resources.builders">
<builder>
<run
class="org.rascalmpl.eclipse.nature.Builder">
</run>
</builder>
</extension>
<extension
id="rascal_markers"
name="rascal_markers"
point="org.eclipse.core.resources.markers">
<super
type="org.eclipse.core.resources.problemmarker">
</super>
<persistent
value="true">
</persistent>
</extension>
</plugin>