-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathplugin.xml
More file actions
148 lines (138 loc) · 4.99 KB
/
plugin.xml
File metadata and controls
148 lines (138 loc) · 4.99 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.newWizards">
<category
id="org.nodeclipse.ui.wizards.category"
name="Nodeclipse">
</category>
<wizard
category="org.nodeclipse.ui.wizards.category"
class="org.nodeclipse.jjs.wizards.NashornProjectWizard"
finalPerspective="org.nodeclipse.ui.perspectives.NodePerspective"
icon="icons/nashorn_16x16_top_right_corner_new.png"
id="org.nodeclipse.jjs.wizards.NashornProjectWizard"
name="N&ashorn Project"
project="true">
<description>
Create a new Nashorn project (or add .project file to an existing project)
</description>
</wizard>
</extension>
<extension
point="org.eclipse.ui.ide.projectNatureImages">
<image
icon="icons/nashorn_16x16.png"
id="org.nodeclipse.jjs.NashornNature.Image"
natureId="org.nodeclipse.jjs.NashornNature">
</image>
</extension>
<extension
id="org.nodeclipse.jjs.NashronNature"
name="Nashorn Project Nature"
point="org.eclipse.core.resources.natures">
<runtime>
<run
class="org.nodeclipse.jjs.nature.NashornNature">
</run>
</runtime>
</extension>
<extension
point="org.eclipse.ui.editors">
<editor
class="org.nodeclipse.ui.editors.NodeEditor"
contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
default="true"
extensions="jjs"
icon="icons/java_16x16.png"
id="org.nodeclipse.jjs.editors.JJSEditor"
name="JJS Editor">
</editor>
</extension>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="org.nodeclipse.jjs.launch.LaunchConfigurationDelegate"
id="org.nodeclipse.jjs.launch.LaunchConfigurationType"
modes="run, debug"
name="JJS Application">
</launchConfigurationType>
</extension>
<extension
point= "org.eclipse.debug.ui.launchConfigurationTypeImages" >
<launchConfigurationTypeImage
configTypeID= "org.nodeclipse.jjs.launch.LaunchConfigurationType"
icon= "icons/nashorn_16x16_bottom_right_corner_run_half_size.png"
id= "org.nodeclipse.jjs.launch.LaunchConfigurationTypeImage" >
</launchConfigurationTypeImage>
</extension>
<!-- jjs run/debug -->
<extension
point= "org.eclipse.debug.ui.launchShortcuts" >
<shortcut
class= "org.nodeclipse.jjs.launch.LaunchShortcut"
icon= "icons/nashorn_16x16_bottom_right_corner_run_half_size.png"
id= "org.nodeclipse.debug.launch.LaunchShortcut"
label= "JJS Application"
modes= "run, debug" >
<configurationType
id= "org.nodeclipse.jjs.launch.LaunchConfigurationType" >
</configurationType>
<contextualLaunch>
<enablement>
<with
variable= "selection" >
<count
value= "1" >
</count>
<iterate>
<or>
<test
property= "org.eclipse.debug.ui.matchesPattern"
value= "*.js" >
</test>
<test
property= "org.eclipse.debug.ui.matchesPattern"
value= "*.jjs" >
</test>
</or>
</iterate>
</with>
</enablement>
</contextualLaunch>
</shortcut>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class= "org.nodeclipse.jjs.launch.LaunchConfigurationTabGroup"
id= "org.nodeclipse.jjs.launch.LaunchConfigurationTabGroup"
type= "org.nodeclipse.jjs.launch.LaunchConfigurationType" >
</launchConfigurationTabGroup>
</extension>
<!-- not used
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="org.nodeclipse.phantomjs.preferences.PhantomjsPreferenceInitializer">
</initializer>
</extension>
-->
<extension
point="org.eclipse.ui.preferencePages">
<page
category="org.nodeclipse.ui.preferences.NodePreferencePage"
class="org.nodeclipse.jjs.preferences.JJSPreferencePage"
id="org.nodeclipse.jjs.preferences.JJSPreferencePage"
name="JJS">
</page>
</extension>
<extension
point="org.eclipse.help.toc">
<toc
file="HelpToc.xml"
primary="true">
</toc>
</extension>
</plugin>