-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
30 lines (29 loc) · 1.3 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="org.mtkachev.eclipse.plugins.multilauncher.internal.MultilauncherConfigurationDelegate"
id="org.mtkachev.eclipse.plugins.multilauncher.launchConfigurationType1"
modes="run,debug"
name="MultiLaunch">
</launchConfigurationType>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class="org.mtkachev.eclipse.plugins.multilauncher.ui.MultilauncherTabGroup"
id="org.mtkachev.eclipse.plugins.multilauncher.launchConfigurationTabGroup"
type="org.mtkachev.eclipse.plugins.multilauncher.launchConfigurationType1">
</launchConfigurationTabGroup>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTypeImages">
<launchConfigurationTypeImage
configTypeID="org.mtkachev.eclipse.plugins.multilauncher.launchConfigurationType1"
icon="icons/multilaunch.gif"
id="org.mtkachev.eclipse.plugins.multilauncher.launchConfigurationTypeImage1">
</launchConfigurationTypeImage>
</extension>
</plugin>