-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathplugin.xml
92 lines (86 loc) · 3.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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.editors">
<editor
class="org.nodeclipse.ui.editors.NodeEditor"
contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
default="true"
extensions="ajs"
icon="icons/java_16x16.png"
id="org.nodeclipse.java.avatarjs.editors.JJSEditor"
name="Avatar.js Editor">
</editor>
</extension>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="org.nodeclipse.java.avatarjs.launch.LaunchConfigurationDelegate"
id="org.nodeclipse.java.avatarjs.launch.LaunchConfigurationType"
modes="run, debug"
name="Avatar.js Application">
</launchConfigurationType>
</extension>
<extension
point= "org.eclipse.debug.ui.launchConfigurationTypeImages" >
<launchConfigurationTypeImage
configTypeID= "org.nodeclipse.java.avatarjs.launch.LaunchConfigurationType"
icon= "icons/java_16x16_bottom_right_corner_run_half_size.png"
id= "org.nodeclipse.java.avatarjs.launch.LaunchConfigurationTypeImage" >
</launchConfigurationTypeImage>
</extension>
<!-- avatar.js run/debug -->
<extension
point= "org.eclipse.debug.ui.launchShortcuts" >
<shortcut
class= "org.nodeclipse.java.avatarjs.launch.LaunchShortcut"
icon= "icons/nashorn_16x16_bottom_right_corner_run_half_size.png"
id= "org.nodeclipse.debug.launch.LaunchShortcut"
label= "Avatar.js Application"
modes= "run, debug" >
<configurationType
id= "org.nodeclipse.java.avatarjs.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.java.avatarjs.launch.LaunchConfigurationTabGroup"
id= "org.nodeclipse.java.avatarjs.launch.LaunchConfigurationTabGroup"
type= "org.nodeclipse.java.avatarjs.launch.LaunchConfigurationType" >
</launchConfigurationTabGroup>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
category="org.nodeclipse.ui.preferences.NodePreferencePage"
class="org.nodeclipse.java.avatarjs.preferences.AvatarjsPreferencePage"
id="org.nodeclipse.java.avatarjs.preferences.AvatarjsPreferencePage"
name="Avatar.js">
</page>
</extension>
</plugin>