Methods in org.kohsuke.youdebug that return BundledBreakpointRequest |
BundledBreakpointRequest |
VM.breakpoint(Class className,
int line,
groovy.lang.Closure c)
Same as VM.breakpoint(String, int, Closure) except you specify the class by using
a reference to the class in this JVM. |
BundledBreakpointRequest |
VM.breakpoint(com.sun.jdi.ReferenceType type,
int line,
groovy.lang.Closure body)
Same as VM.breakpoint(String, int, Closure) except you specify the class by using
a remote reference ReferenceType . |
BundledBreakpointRequest |
VM.breakpoint(String className,
int line,
groovy.lang.Closure body)
Sets a break point at the specified line in the specified class, and if it hits,
invoke the closure. |