Uses of Interface
org.eclipse.jdt.debug.core.IJavaDebugTarget
Packages that use IJavaDebugTarget
Package
Description
Provides an implementation of a debug model based on JPDA (Java Platform Debug Architecture).
Provides a set classes and interfaces that support evaluations in the Java debugger.
-
Uses of IJavaDebugTarget in org.eclipse.jdt.debug.core
Methods in org.eclipse.jdt.debug.core with parameters of type IJavaDebugTargetModifier and TypeMethodDescriptionvoidIJavaBreakpointListener.addingBreakpoint(IJavaDebugTarget target, IJavaBreakpoint breakpoint) Notification that the given breakpoint is about to be added to the specified target.voidIJavaBreakpointListener.breakpointInstalled(IJavaDebugTarget target, IJavaBreakpoint breakpoint) Notification that the given breakpoint has been installed in the specified target.voidIJavaBreakpointListener.breakpointRemoved(IJavaDebugTarget target, IJavaBreakpoint breakpoint) Notification that the given breakpoint has been removed from the specified target.IJavaTargetPatternBreakpoint.getPattern(IJavaDebugTarget target) Returns the type name pattern this breakpoint uses to identify types in which to install itself in the given targetIJavaBreakpoint.getThreadFilter(IJavaDebugTarget target) Returns the thread in the given target in which this breakpoint is enabled ornullif this breakpoint is enabled in all threads in the given target.voidIJavaHotCodeReplaceListener.hotCodeReplaceFailed(IJavaDebugTarget target, org.eclipse.debug.core.DebugException exception) Notification that a hot code replace attempt failed in the given target.voidIJavaHotCodeReplaceListener.hotCodeReplaceSucceeded(IJavaDebugTarget target) Notification that a hot code replace attempt succeeded in the given target.intIJavaBreakpointListener.installingBreakpoint(IJavaDebugTarget target, IJavaBreakpoint breakpoint, IJavaType type) Notification that the given breakpoint is about to be installed in the specified target, in the specified type.voidIJavaHotCodeReplaceListener.obsoleteMethods(IJavaDebugTarget target) Notification that obsolete methods remain on the stack in one or more threads in the given target after a hot code replace.voidIJavaBreakpoint.removeThreadFilter(IJavaDebugTarget target) Removes this breakpoint's thread filter in the given target, if any.voidIJavaTargetPatternBreakpoint.setPattern(IJavaDebugTarget target, String pattern) Sets the type name pattern this breakpoint uses to identify types in which to install itself in the given target -
Uses of IJavaDebugTarget in org.eclipse.jdt.debug.eval
Methods in org.eclipse.jdt.debug.eval that return IJavaDebugTargetModifier and TypeMethodDescriptionIEvaluationEngine.getDebugTarget()Returns the debug target for which evaluations are executed.Methods in org.eclipse.jdt.debug.eval with parameters of type IJavaDebugTargetModifier and TypeMethodDescriptionstatic IAstEvaluationEngineEvaluationManager.newAstEvaluationEngine(IJavaProject project, IJavaDebugTarget target) Creates and returns a new evaluation engine that performs evaluations by compiling expressions into abstract syntax trees (ASTs), and interpreting the AST over a JDI connection.static IClassFileEvaluationEngineEvaluationManager.newClassFileEvaluationEngine(IJavaProject project, IJavaDebugTarget target, File directory) Creates and returns a new evaluation engine that performs evaluations for local Java applications by deploying class files.