Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2008-01-30 02:54:23 +0000
committerDarin Wright2008-01-30 02:54:23 +0000
commit93f123bf9224201ed1a67270fe9e2deb9bd9e813 (patch)
tree95e11e90cf1e55db83f27b4ba90c384af88980bf /org.eclipse.debug.ui
parent5c7d618456cc7e1257c409379df1b7d71ee51a1c (diff)
downloadeclipse.platform.debug-93f123bf9224201ed1a67270fe9e2deb9bd9e813.tar.gz
eclipse.platform.debug-93f123bf9224201ed1a67270fe9e2deb9bd9e813.tar.xz
eclipse.platform.debug-93f123bf9224201ed1a67270fe9e2deb9bd9e813.zip
Bug 217015- Javadoc warning in I20080129-0800
Diffstat (limited to 'org.eclipse.debug.ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java
index fb963f094..552d1eb8b 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java
@@ -43,11 +43,11 @@ public interface IWatchExpressionFactoryAdapter2 {
/**
* Returns whether a watch expression can be created for the specified variable.
*
- * @param variable variable a watch expression is required for
+ * @param variable the specified variable
* @return whether an expression can be created
* @exception org.eclipse.core.runtime.CoreException if unable to create a watch
* expression
*/
- public boolean canCreateWatchExpression(Object element);
+ public boolean canCreateWatchExpression(Object variable);
}

Back to the top