Uses of Interface
org.eclipse.jdt.debug.eval.ICompiledExpression
-
Packages that use ICompiledExpression Package Description org.eclipse.jdt.debug.eval Provides a set classes and interfaces that support evaluations in the Java debugger. -
-
Uses of ICompiledExpression in org.eclipse.jdt.debug.eval
Methods in org.eclipse.jdt.debug.eval that return ICompiledExpression Modifier and Type Method Description ICompiledExpression
IAstEvaluationEngine. getCompiledExpression(String expression, IJavaObject object)
Synchronously generates a compiled expression from the given expression in the context of the specified object.ICompiledExpression
IAstEvaluationEngine. getCompiledExpression(String expression, IJavaReferenceType type)
Synchronously generates a compiled expression from the given expression in the context of the specified type.ICompiledExpression
IAstEvaluationEngine. getCompiledExpression(String expression, IJavaReferenceType type, Map<String,String> compileOptions)
Synchronously generates a compiled expression from the given expression in the context of the specified type.ICompiledExpression
IAstEvaluationEngine. getCompiledExpression(String expression, IJavaStackFrame frame)
Synchronously generates a compiled expression from the given expression in the context of the specified stack frame.Methods in org.eclipse.jdt.debug.eval with parameters of type ICompiledExpression Modifier and Type Method Description void
IAstEvaluationEngine. evaluateExpression(ICompiledExpression expression, IJavaObject object, IJavaThread thread, IEvaluationListener listener, int evaluationDetail, boolean hitBreakpoints)
Asynchronously evaluates the given expression in the context of the specified type, reporting the result back to the given listener.void
IAstEvaluationEngine. evaluateExpression(ICompiledExpression expression, IJavaStackFrame frame, IEvaluationListener listener, int evaluationDetail, boolean hitBreakpoints)
Asynchronously evaluates the given expression in the context of the specified stack frame, reporting the result back to the given listener.
-