-
Notifications
You must be signed in to change notification settings - Fork 4
/
plugin.xml
67 lines (62 loc) · 2.64 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
<extension point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="com.maintainj.launching.j2se.J2SELauncher"
id="com.maintainj.launching.j2se"
modes="run,debug"
name="Java Application with MaintainJ"/>
<launchConfigurationType
delegate="com.maintainj.launching.applet.AppletLauncher"
id="com.maintainj.launching.applet"
modes="run,debug"
name="Java Applet with MaintainJ"/>
<launchConfigurationType
delegate="com.maintainj.launching.junit.JUnitLauncher"
id="com.maintainj.launching.junit"
modes="run,debug"
name="JUnit with MaintainJ"
/>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class="com.maintainj.launching.j2se.tabs.J2SETabGroup"
id="com.maintainj.launching.j2se.tabGroup"
type="com.maintainj.launching.j2se"/>
<launchConfigurationTabGroup
class="com.maintainj.launching.applet.tabs.AppletTabGroup"
id="com.maintainj.launching.applet.tabGroup"
type="com.maintainj.launching.applet"/>
<launchConfigurationTabGroup
type="com.maintainj.launching.junit"
class="com.maintainj.launching.junit.tabs.JUnitTabGroup"
id="org.eclipse.jdt.junit.launchConfigurationTabGroup.junit.mnj">
<launchMode
perspective="org.eclipse.debug.ui.DebugPerspective"
description="JUnit Debug"
mode="debug">
</launchMode>
<launchMode
description="JUnit Run"
mode="run">
</launchMode>
</launchConfigurationTabGroup>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTypeImages">
<launchConfigurationTypeImage
configTypeID="com.maintainj.launching.j2se"
icon="icons/mnj.gif"
id="com.maintainj.launching.j2se.image1"/>
<launchConfigurationTypeImage
configTypeID="com.maintainj.launching.applet"
icon="icons/mnj.gif"
id="com.maintainj.launching.applet.image1"/>
<launchConfigurationTypeImage
configTypeID="com.maintainj.launching.junit"
icon="icons/mnj.gif"
id="com.maintainj.launching.junit.image1"/>
</extension>
</plugin>