Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2004-04-14 16:56:14 +0000
committerDarin Wright2004-04-14 16:56:14 +0000
commit433209572f82bddeb6382ae1aacb18256f91c0db (patch)
tree6869992dfb2f2e322cf119e34de585e4af21bc1f /org.eclipse.core.variables/src
parent26cf8b7e31ccb3add36d6a3c2458624a73e0a669 (diff)
downloadeclipse.platform.debug-433209572f82bddeb6382ae1aacb18256f91c0db.tar.gz
eclipse.platform.debug-433209572f82bddeb6382ae1aacb18256f91c0db.tar.xz
eclipse.platform.debug-433209572f82bddeb6382ae1aacb18256f91c0db.zip
javadoc for Bug 57332 - Too much validation going on in launch config Location
Diffstat (limited to 'org.eclipse.core.variables/src')
-rw-r--r--org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java b/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java
index fa0a6536e..55e62b69b 100644
--- a/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java
+++ b/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java
@@ -99,11 +99,11 @@ public interface IStringVariableManager {
public String performStringSubstitution(String expression, boolean reportUndefinedVariables) throws CoreException;
/**
- * Recursively determines the validity of all variables references in the given
- * expression and reports errors for references to undefined variables.
+ * Validates variables references in the given expression and reports errors
+ * for references to undefined variables.
*
* @param expression expression referencing variables
- * @throws CoreException if one or more variables does not exist
+ * @throws CoreException if one or more referenced variables do not exist
*/
public void validateStringVariables(String expression) throws CoreException;

Back to the top