Skip to main content
aboutsummaryrefslogtreecommitdiffstats
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.core/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.core/plugin.xml')
-rw-r--r--org.eclipse.debug.core/plugin.xml45
1 files changed, 45 insertions, 0 deletions
diff --git a/org.eclipse.debug.core/plugin.xml b/org.eclipse.debug.core/plugin.xml
index e74efb312..61e3d02b5 100644
--- a/org.eclipse.debug.core/plugin.xml
+++ b/org.eclipse.debug.core/plugin.xml
@@ -106,6 +106,51 @@
name="workspace_loc"
resolver="org.eclipse.debug.internal.core.variables.WorkspaceResolver">
</variable>
+ <variable
+ name="project_loc"
+ description="%project_loc.description"
+ resolver="org.eclipse.debug.internal.core.variables.ProjectResolver">
+ </variable>
+ <variable
+ name="project_path"
+ description="%project_path.description"
+ resolver="org.eclipse.debug.internal.core.variables.ProjectResolver">
+ </variable>
+ <variable
+ name="project_name"
+ description="%project_name.description"
+ resolver="org.eclipse.debug.internal.core.variables.ProjectResolver">
+ </variable>
+ <variable
+ name="resource_loc"
+ description="%resource_loc.description"
+ resolver="org.eclipse.debug.internal.core.variables.ResourceResolver">
+ </variable>
+ <variable
+ name="resource_path"
+ description="%resource_path.description"
+ resolver="org.eclipse.debug.internal.core.variables.ResourceResolver">
+ </variable>
+ <variable
+ name="resource_name"
+ description="%resource_name.description"
+ resolver="org.eclipse.debug.internal.core.variables.ResourceResolver">
+ </variable>
+ <variable
+ name="container_loc"
+ description="%container_loc.description"
+ resolver="org.eclipse.debug.internal.core.variables.ContainerResolver">
+ </variable>
+ <variable
+ name="container_path"
+ description="%container_path.description"
+ resolver="org.eclipse.debug.internal.core.variables.ContainerResolver">
+ </variable>
+ <variable
+ name="container_name"
+ description="%container_name.description"
+ resolver="org.eclipse.debug.internal.core.variables.ContainerResolver">
+ </variable>
</extension>
<!-- ====================== -->

Back to the top