public interface IWatchExpressionDelegate
org.eclipse.debug.core.watchExpressionDelegates
extension point.
For example, the following is the definition of a watch expression delegate for the com.example.foo plug-in:
<extension point="org.eclipse.debug.core.watchExpressionDelegates"> <watchExpressionDelegate debugModel="org.eclipse.jdt.debug" delegateClass="org.eclipse.jdt.internal.debug.ui.JavaWatchExpressionDelegate"/> </extension>
Clients are intended to implement this interface.
IWatchExpression
,
IWatchExpressionListener
Modifier and Type | Method and Description |
---|---|
void |
evaluateExpression(String expression,
IDebugElement context,
IWatchExpressionListener listener)
Evaluates the given expression in the given context asynchronously and
notifies the given listener when the evaluation finishes.
|
void evaluateExpression(String expression, IDebugElement context, IWatchExpressionListener listener)
expression
- the expression to evaluatecontext
- the context for the evaluationlistener
- the listener to notify when the evaluation completes
Copyright (c) 2000, 2014 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.