Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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.java11
1 files changed, 6 insertions, 5 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 b1449beb9..7cca45079 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
@@ -42,23 +42,24 @@ public interface IWatchExpression extends IErrorReportingExpression {
* generally be asynchronous to avoid blocking the calling thread.
*/
void evaluate();
+
/**
* Sets the context for this watch expression, or <code>null</code> if none.
* If the given context is valid for this expression, this expression may
- * update its value. When the value update is complete, a debug change event is
- * fired. When <code>null</code> is specified as a context, this expression
- * may choose to retain its previous value.
+ * update its value. When the value update is complete, a debug change event
+ * is fired. When <code>null</code> is specified as a context, this
+ * expression may choose to retain its previous value.
* <p>
* The context is usually one of (but not limited to):
+ * </p>
* <ul>
* <li>a debug target (<code>IDebugTarget</code>)</li>
* <li>a thread (<code>IThread</code>)</li>
* <li>a stack frame (<code>IStackFrame</code>)</li>
* </ul>
- * </p>
*
* @param context context in which to update this expression's value, or
- * <code>null</code> if none
+ * <code>null</code> if none
*/
void setExpressionContext(IDebugElement context);
/**

Back to the top