-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
29 lines (28 loc) · 1.11 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="4.34"?>
<plugin>
<extension point="org.eclipse.debug.core.sourceLocators">
<sourceLocator
id="mixinmash.sourceLocator"
name="MixinMash Source Locator"
class="com.wildermods.mixinmash.TestSourceLookupDirector">
</sourceLocator>
</extension>
<extension point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
id="mixinmash.launchconfig.decompdebug"
name="MixinMash Launch Configuration"
delegate="com.wildermods.mixinmash.launchconfig.DebugWithDecompilerDelegate"
modes="debug"
public="true">
</launchConfigurationType>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class="com.wildermods.mixinmash.launchconfig.ui.DecompDebugTagGroup"
id="mixinmash.launchConfigurationTabGroup"
type="mixinmash.launchconfig.decompdebug">
</launchConfigurationTabGroup>
</extension>
</plugin>