-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
50 lines (49 loc) · 1.81 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="com.plugin.launchconfigs.launching.LaunchConfigurationDelegate"
id="com.plugin.launchconfigs.launchConfigurationType"
modes="run, debug"
name="Launch Configs ">
</launchConfigurationType>
</extension>
<extension
point="org.eclipse.debug.ui.launchShortcuts">
<shortcut
class="com.plugin.launchconfigs.ui.LaunchShortcut"
icon="icons/shortcut_icon.png"
id="com.plugin.launchconfigs.shortcut"
label="Launch Configs Shortcut"
modes="run, debug">
<contextualLaunch>
<enablement>
<with
variable="selection">
<count
value="+">
</count>
</with>
</enablement>
</contextualLaunch>
</shortcut>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class="com.plugin.launchconfigs.ui.LaunchTabGroup"
id="com.plugin.launchconfigs.launchConfigurationTabGroup"
type="com.plugin.launchconfigs.launchConfigurationType">
</launchConfigurationTabGroup>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTypeImages">
<launchConfigurationTypeImage
configTypeID="com.plugin.launchconfigs.launchConfigurationType"
icon="icons/configuration_icon.png"
id="com.plugin.launchconfigs.launchConfigurationTypeImage">
</launchConfigurationTypeImage>
</extension>
</plugin>