Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2006-09-13 19:09:18 +0000
committerMichael Rennie2006-09-13 19:09:18 +0000
commitcb58d87712559cf2335251ba81b8d36732c9f79d (patch)
treeebc796605284764e6922d626149c59d40fa1fc0a /org.eclipse.debug.core/plugin.xml
parent4b4c01b51692d209933f6f3981094f77f292aadb (diff)
downloadeclipse.platform.debug-cb58d87712559cf2335251ba81b8d36732c9f79d.tar.gz
eclipse.platform.debug-cb58d87712559cf2335251ba81b8d36732c9f79d.tar.xz
eclipse.platform.debug-cb58d87712559cf2335251ba81b8d36732c9f79d.zip
Bug 157059
extensible launch options
Diffstat (limited to 'org.eclipse.debug.core/plugin.xml')
-rw-r--r--org.eclipse.debug.core/plugin.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/org.eclipse.debug.core/plugin.xml b/org.eclipse.debug.core/plugin.xml
index b661755e9..f622ecbb1 100644
--- a/org.eclipse.debug.core/plugin.xml
+++ b/org.eclipse.debug.core/plugin.xml
@@ -18,6 +18,7 @@
<extension-point id="sourceContainerTypes" name="%sourceContainerTypesName" schema="schema/sourceContainerTypes.exsd"/>
<extension-point id="sourcePathComputers" name="%sourcePathComputersName" schema="schema/sourcePathComputers.exsd"/>
<extension-point id="logicalStructureProviders" name="%logicalStructureProvidersExtensionPointName" schema="schema/logicalStructureProviders.exsd"/>
+ <extension-point id="launchOptions" name="%launchOptionsExtensionpointName" schema="schema/launchOptions.exsd"/>
<!-- Extensions -->
<extension
@@ -159,6 +160,14 @@
class="org.eclipse.debug.internal.core.sourcelookup.SourceLocatorMementoComparator"
id="org.eclipse.debug.core.sourceLocatorMementoComparator">
</launchConfigurationComparator>
+ </extension>
+ <extension
+ point="org.eclipse.debug.core.launchOptions">
+ <launchOption
+ id="org.eclipse.debug.core.debug"
+ label="Debug"
+ option="debug">
+ </launchOption>
</extension>
</plugin>

Back to the top