-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathplugin.xml
More file actions
151 lines (141 loc) · 5.14 KB
/
plugin.xml
File metadata and controls
151 lines (141 loc) · 5.14 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2014 Enide, Paul Verest & other Nodeclipse authors. http://www.nodeclipse.org/
-->
<?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.vertx.wizards.VertxProjectWizard"
finalPerspective="org.nodeclipse.ui.perspectives.NodePerspective"
icon="icons/dot-x-16_top_right_corner_new.png"
id="org.nodeclipse.vertx.wizards.VertxProjectWizard"
name="&Vert.x JavaScript Project"
project="true">
<description>
Create a new Vert.x JavaScript project (or add .project file to an existing project)
</description>
</wizard>
</extension>
<extension
point="org.eclipse.ui.ide.projectNatureImages">
<image
icon="icons/dot-x-16_half_size.png"
id="org.nodeclipse.vertx.VertxNature.Image"
natureId="org.nodeclipse.vertx.VertxNature">
</image>
</extension>
<extension
id="org.nodeclipse.vertx.VertxNature"
name="Vert.x Project Nature"
point="org.eclipse.core.resources.natures">
<runtime>
<run
class="org.nodeclipse.vertx.nature.VertxNature">
</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="vjs"
icon="icons/dot-x-16.png"
id="org.nodeclipse.vertx.editors.VertxEditor"
name="Vert.x JS Editor">
</editor>
</extension>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="org.nodeclipse.vertx.launch.LaunchConfigurationDelegate"
id="org.nodeclipse.vertx.launch.LaunchConfigurationType"
modes="run, debug"
name="Vert.x JS Application">
</launchConfigurationType>
</extension>
<extension
point= "org.eclipse.debug.ui.launchConfigurationTypeImages" >
<launchConfigurationTypeImage
configTypeID= "org.nodeclipse.vertx.launch.LaunchConfigurationType"
icon= "icons/dot-x-16_bottom_right_corner_run_half_size.png"
id= "org.nodeclipse.vertx.launch.LaunchConfigurationTypeImage" >
</launchConfigurationTypeImage>
</extension>
<!-- vertx run/debug -->
<extension
point= "org.eclipse.debug.ui.launchShortcuts" >
<shortcut
class= "org.nodeclipse.vertx.launch.LaunchShortcut"
icon= "icons/dot-x-16_bottom_right_corner_run_half_size.png"
id= "org.nodeclipse.debug.launch.LaunchShortcut"
label= "Vert.x JS Application"
modes= "run, debug" >
<configurationType
id= "org.nodeclipse.vertx.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= "*.vjs" >
</test>
</or>
</iterate>
</with>
</enablement>
</contextualLaunch>
</shortcut>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class= "org.nodeclipse.vertx.launch.LaunchConfigurationTabGroup"
id= "org.nodeclipse.vertx.launch.LaunchConfigurationTabGroup"
type= "org.nodeclipse.vertx.launch.LaunchConfigurationType" >
</launchConfigurationTabGroup>
</extension>
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="org.nodeclipse.vertx.preferences.VertxPreferenceInitializer">
</initializer>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
category="org.nodeclipse.ui.preferences.NodePreferencePage"
class="org.nodeclipse.vertx.preferences.VertxPreferencePage"
id="org.nodeclipse.vertx.preferences.VertxPreferencePage"
name="Vert.x">
</page>
</extension>
<!-- not used
<extension
point="org.eclipse.help.toc">
<toc
file="HelpToc.xml"
primary="true">
</toc>
</extension>
-->
</plugin>