-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
75 lines (72 loc) · 2.87 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension point="org.eclipse.ui.editors">
<editor
name="Rexx Editor"
extensions="rex, jrex, rexx, cls, rxj, testUnit"
icon="icons/rexxLogo.GIF"
contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
class="org.imperfectmommy.rexxeditor.editors.RexxEditor"
id="rexxeditor.editors.RexxEditor">
</editor>
</extension>
<extension point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType delegate="org.imperfectmommy.rexxeditor.launcher.RexxLaunchConfigurationDelegate"
id="rexxeditor.launchConfigurationType" modes="run" name="RexxApplication" public="true">
</launchConfigurationType>
</extension>
<extension point="org.eclipse.debug.ui.launchShortcuts">
<shortcut
id="rexxeditor.rexxLaunchShortcut"
class="org.imperfectmommy.rexxeditor.launcher.RexxLaunchShortcut"
label="Rexx program"
icon="icons/rexxLogo.GIF"
modes="run">
</shortcut>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
name="Rexx Preferences"
class="org.imperfectmommy.rexxeditor.preferences.RexxPreferencePage"
id="rexxeditor.preferences.RexxPreferencePage">
</page>
</extension>
<extension
point="org.eclipse.ui.newWizards">
<category
id="rexxeditor"
name="Rexx Wizards"/>
<wizard
name="ooRexx file"
icon="icons/rexxLogo.GIF"
category="rexxeditor"
class="org.imperfectmommy.rexxeditor.wizards.RexxNewWizard"
id="rexxeditor.wizards.SampleNewWizard">
</wizard>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class="org.imperfectmommy.rexxeditor.launcher.RexxLaunchConfigurationTabGroup"
id="rexxeditor.launcher.RexxLaunchConfigurationTabGroup"
type="rexxeditor.launchConfigurationType">
<launchMode mode="run"/>
</launchConfigurationTabGroup>
</extension>
<extension point="org.eclipse.debug.ui.launchConfigurationTypeImages">
<launchConfigurationTypeImage
icon="icons/rexxLogo.GIF"
configTypeID="rexxeditor.launchConfigurationType"
id="rexxeditor.launchConfigurationTypeImage">
</launchConfigurationTypeImage>
</extension>
<extension point="org.eclipse.core.runtime.adapters">
<factory
adaptableType="org.imperfectmommy.rexxeditor.editors.RexxEditor"
class="org.imperfectmommy.rexxeditor.contentoutliner.RexxOutlineAdapterFactory">
<adapter type="org.eclipse.ui.views.contentoutline.IContentOutlinePage"/>
</factory>
</extension>
</plugin>