Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJared Burns2003-05-22 16:22:22 +0000
committerJared Burns2003-05-22 16:22:22 +0000
commit56c060f2c25774b44226174cb9180869c1f26b2d (patch)
treeab29ec1a71b642b406f7331cc26e8f97b872209f /org.eclipse.ui.externaltools/plugin.xml
parent8cfcb47909ba66de548d9066ccbe111b8c49deca (diff)
downloadeclipse.platform.debug-56c060f2c25774b44226174cb9180869c1f26b2d.tar.gz
eclipse.platform.debug-56c060f2c25774b44226174cb9180869c1f26b2d.tar.xz
eclipse.platform.debug-56c060f2c25774b44226174cb9180869c1f26b2d.zip
Bug 37241 - Support for core variables
Diffstat (limited to 'org.eclipse.ui.externaltools/plugin.xml')
-rw-r--r--org.eclipse.ui.externaltools/plugin.xml28
1 files changed, 14 insertions, 14 deletions
diff --git a/org.eclipse.ui.externaltools/plugin.xml b/org.eclipse.ui.externaltools/plugin.xml
index d1788f47b..db9f00cd2 100644
--- a/org.eclipse.ui.externaltools/plugin.xml
+++ b/org.eclipse.ui.externaltools/plugin.xml
@@ -189,40 +189,40 @@
</extension>
<!-- Variable Extensions -->
- <extension point="org.eclipse.debug.ui.launchConfigurationVariables">
+ <extension point="org.eclipse.debug.ui.contextLaunchVariables">
<variable
- tag="build_type"
+ name="build_type"
description="%build_type.description"
expanderClass="org.eclipse.ui.externaltools.internal.variables.BuildTypeExpander">
</variable>
</extension>
<extension point="org.eclipse.ui.externaltools.refreshVariables">
<variable
- tag="workspace"
+ name="workspace"
description="%workspace.description"
- expanderClass="org.eclipse.debug.ui.variables.WorkspaceExpander">
+ expanderClass="org.eclipse.debug.ui.launchVariables.WorkspaceExpander">
</variable>
<variable
- tag="project"
+ name="project"
description="%project.description"
- expanderClass="org.eclipse.debug.ui.variables.ProjectExpander">
+ expanderClass="org.eclipse.debug.ui.launchVariables.ProjectExpander">
</variable>
<variable
- tag="container"
+ name="container"
description="%container.description"
- expanderClass="org.eclipse.debug.ui.variables.ContainerExpander">
+ expanderClass="org.eclipse.debug.ui.launchVariables.ContainerExpander">
</variable>
<variable
- tag="resource"
+ name="resource"
description="%resource.description"
- componentClass="org.eclipse.debug.ui.variables.ResourceComponent"
- expanderClass="org.eclipse.debug.ui.variables.ResourceExpander">
+ componentClass="org.eclipse.debug.ui.launchVariables.ResourceComponent"
+ expanderClass="org.eclipse.debug.ui.launchVariables.ResourceExpander">
</variable>
<variable
- tag="working_set"
+ name="working_set"
description="%working_set.description"
- componentClass="org.eclipse.debug.ui.variables.WorkingSetComponent"
- expanderClass="org.eclipse.debug.ui.variables.WorkingSetExpander">
+ componentClass="org.eclipse.debug.ui.launchVariables.WorkingSetComponent"
+ expanderClass="org.eclipse.debug.ui.launchVariables.WorkingSetExpander">
</variable>
</extension>

Back to the top