Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJared Burns2003-08-25 23:06:25 +0000
committerJared Burns2003-08-25 23:06:25 +0000
commite03e692373fb990798469d10a1f31445d61d84a5 (patch)
treebaea2229a7011e8275fd7751dfd3cea3b6a94647 /org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchExpression.java
parentecda3066c03f89f0e9ae8b2f37d7d99eca3bd244 (diff)
downloadeclipse.platform.debug-e03e692373fb990798469d10a1f31445d61d84a5.tar.gz
eclipse.platform.debug-e03e692373fb990798469d10a1f31445d61d84a5.tar.xz
eclipse.platform.debug-e03e692373fb990798469d10a1f31445d61d84a5.zip
*** empty log message ***
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchExpression.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchExpression.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchExpression.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchExpression.java
index 0cf19d842..bcd4934e0 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchExpression.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IWatchExpression.java
@@ -44,7 +44,9 @@ public interface IWatchExpression extends IErrorReportingExpression {
*/
public void setExpressionContext(IDebugElement context);
/**
- * Sets this watch expression's snippet of code.
+ * Sets this watch expression's snippet of code. This method
+ * causes the new snippet to be evaluated immediately in
+ * the expression's last context.
*
* @param expressionText the snippet which will be evaluated
*/
@@ -65,7 +67,9 @@ public interface IWatchExpression extends IErrorReportingExpression {
*/
public boolean isEnabled();
/**
- * Sets this expression's enabled state.
+ * Sets this expression's enabled state. This method
+ * causes the new snippet to be evaluated immediately in
+ * the expression's last context.
*
* @param enabled whether this expression should be enabled
*/

Back to the top