Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2003-10-21 18:26:34 +0000
committerDarin Swanson2003-10-21 18:26:34 +0000
commit2652e3f1f2df5e0fedad5644e7fc2aadbee93a2c (patch)
tree83c0ba4bf766c299334e321d129a685f5bfc3f69 /org.eclipse.core.variables/schema
parenta0af2a65b06e35cb5f3a27b5fb905c353a532dce (diff)
downloadeclipse.platform.debug-2652e3f1f2df5e0fedad5644e7fc2aadbee93a2c.tar.gz
eclipse.platform.debug-2652e3f1f2df5e0fedad5644e7fc2aadbee93a2c.tar.xz
eclipse.platform.debug-2652e3f1f2df5e0fedad5644e7fc2aadbee93a2c.zip
Bug 43332 - String Substitution Support
Diffstat (limited to 'org.eclipse.core.variables/schema')
-rw-r--r--org.eclipse.core.variables/schema/dynamicVariables.exsd10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.core.variables/schema/dynamicVariables.exsd b/org.eclipse.core.variables/schema/dynamicVariables.exsd
index 7ca4b0eb5..78c6e722c 100644
--- a/org.eclipse.core.variables/schema/dynamicVariables.exsd
+++ b/org.eclipse.core.variables/schema/dynamicVariables.exsd
@@ -1,9 +1,9 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
-<schema targetNamespace="org.eclipse.debug.core">
+<schema targetNamespace="org.eclipse.core.variables">
<annotation>
<appInfo>
- <meta.schema plugin="org.eclipse.debug.core" id="dynamicVariables" name="Dynamic Stirng Substitution Variables"/>
+ <meta.schema plugin="org.eclipse.core.variables" id="dynamicVariables" name="Dynamic Stirng Substitution Variables"/>
</appInfo>
<documentation>
This extension point provides a mechanism for defining dynamic variables used in string substitution. The value of a dynamic variable is resolved at the time a string substitution is performed, with an optional argument.
@@ -51,10 +51,10 @@
<attribute name="resolver" type="string" use="required">
<annotation>
<documentation>
- specifies a Java class which implements &lt;samp&gt;org.eclipse.debug.core.stringsubstitution.IContextVariableResolver&lt;/samp&gt;, which is used to determine the value of the variable
+ specifies a Java class which implements &lt;samp&gt;org.eclipse.core.variables.IDynamicVariableResolver&lt;/samp&gt;, which is used to determine the value of the variable
</documentation>
<appInfo>
- <meta.attribute kind="java" basedOn="org.eclipse.debug.core.variables.IVariableExpander"/>
+ <meta.attribute kind="java" basedOn="org.eclipse.core.variables.IDynamicVariableResolver"/>
</appInfo>
</annotation>
</attribute>
@@ -84,7 +84,7 @@
<documentation>
The following is a definition of a dynamic variable that resolves to the name of the selected resource:
&lt;pre&gt;
- &lt;extension point=&quot;org.eclipse.debug.core.dynamicVariables&quot;&gt;
+ &lt;extension point=&quot;org.eclipse.core.variables.dynamicVariables&quot;&gt;
&lt;variable
name=&quot;resource_name&quot;
expanderClass=&quot;com.example.ResourceNameExpander&quot;

Back to the top