Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2009-02-06 16:59:09 +0000
committerDarin Wright2009-02-06 16:59:09 +0000
commit946b1b6c50f2b2b85a1d75ea127b6a3a3b730c77 (patch)
treed9bf6476c930f46c929bc7387da1837a51022e68 /org.eclipse.debug.ui/plugin.xml
parente3725a77fe11efe3fe1d245b7620ad7bc540f2cb (diff)
downloadeclipse.platform.debug-946b1b6c50f2b2b85a1d75ea127b6a3a3b730c77.tar.gz
eclipse.platform.debug-946b1b6c50f2b2b85a1d75ea127b6a3a3b730c77.tar.xz
eclipse.platform.debug-946b1b6c50f2b2b85a1d75ea127b6a3a3b730c77.zip
Bug 208484 - variables should be available for headless operation when possible
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml60
1 files changed, 15 insertions, 45 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 37425b58b..58d8ddb35 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -2023,51 +2023,6 @@ M4 = Platform-specific fourth key
<extension
point="org.eclipse.core.variables.dynamicVariables">
<variable
- name="project_loc"
- description="%project_loc.description"
- resolver="org.eclipse.debug.internal.ui.stringsubstitution.ProjectResolver">
- </variable>
- <variable
- name="project_path"
- description="%project_path.description"
- resolver="org.eclipse.debug.internal.ui.stringsubstitution.ProjectResolver">
- </variable>
- <variable
- name="project_name"
- description="%project_name.description"
- resolver="org.eclipse.debug.internal.ui.stringsubstitution.ProjectResolver">
- </variable>
- <variable
- name="resource_loc"
- description="%resource_loc.description"
- resolver="org.eclipse.debug.internal.ui.stringsubstitution.ResourceResolver">
- </variable>
- <variable
- name="resource_path"
- description="%resource_path.description"
- resolver="org.eclipse.debug.internal.ui.stringsubstitution.ResourceResolver">
- </variable>
- <variable
- name="resource_name"
- description="%resource_name.description"
- resolver="org.eclipse.debug.internal.ui.stringsubstitution.ResourceResolver">
- </variable>
- <variable
- name="container_loc"
- description="%container_loc.description"
- resolver="org.eclipse.debug.internal.ui.stringsubstitution.ContainerResolver">
- </variable>
- <variable
- name="container_path"
- description="%container_path.description"
- resolver="org.eclipse.debug.internal.ui.stringsubstitution.ContainerResolver">
- </variable>
- <variable
- name="container_name"
- description="%container_name.description"
- resolver="org.eclipse.debug.internal.ui.stringsubstitution.ContainerResolver">
- </variable>
- <variable
name="string_prompt"
description="%string_prompt.description"
resolver="org.eclipse.debug.internal.ui.stringsubstitution.StringPrompt">
@@ -2092,6 +2047,21 @@ M4 = Platform-specific fourth key
description="%selected_text.description"
resolver="org.eclipse.debug.internal.ui.stringsubstitution.SelectedTextResolver">
</variable>
+ <variable
+ name="selected_resource_loc"
+ description="%selected_resource_loc.description"
+ resolver="org.eclipse.debug.internal.ui.stringsubstitution.SelectedResourceResolver">
+ </variable>
+ <variable
+ name="selected_resource_path"
+ description="%selected_resource_path.description"
+ resolver="org.eclipse.debug.internal.ui.stringsubstitution.SelectedResourceResolver">
+ </variable>
+ <variable
+ name="selected_resource_name"
+ description="%selected_resource_name.description"
+ resolver="org.eclipse.debug.internal.ui.stringsubstitution.SelectedResourceResolver">
+ </variable>
</extension>
<!-- String Variable Presentations -->
<extension

Back to the top