public interface IgnoreCountBreakpointExtension
Modifier and Type | Field and Description |
---|---|
static int |
EMPTY_VALUE
This value is used when the corresponding parameter is absent.
|
Modifier and Type | Method and Description |
---|---|
RelayOk |
setBreakpoint(JavascriptVm javascriptVm,
Breakpoint.Target target,
int line,
int column,
boolean enabled,
java.lang.String condition,
int ignoreCount,
JavascriptVm.BreakpointCallback callback,
SyncCallback syncCallback)
Sets a breakpoint with the specified parameters.
|
RelayOk |
setIgnoreCount(Breakpoint breakpoint,
int ignoreCount,
GenericCallback<java.lang.Void> callback,
SyncCallback syncCallback)
Sets the ignore count for this breakpoint (
EMPTY_VALUE to clear). |
static final int EMPTY_VALUE
RelayOk setBreakpoint(JavascriptVm javascriptVm, Breakpoint.Target target, int line, int column, boolean enabled, java.lang.String condition, int ignoreCount, JavascriptVm.BreakpointCallback callback, SyncCallback syncCallback)
target
- of the breakpointline
- in the script or function (1-based). If none, use
Breakpoint.EMPTY_VALUE
column
- of the target start within the line (1-based). If none, use
Breakpoint.EMPTY_VALUE
enabled
- whether the breakpoint is enabled initiallyignoreCount
- number specifying the amount of breakpoint hits to
ignore. If none, use EMPTY_VALUE
condition
- nullable string with breakpoint conditioncallback
- to invoke when the evaluation result is ready,
may be null
RelayOk setIgnoreCount(Breakpoint breakpoint, int ignoreCount, GenericCallback<java.lang.Void> callback, SyncCallback syncCallback)
EMPTY_VALUE
to clear).
Does not require subsequent flush call.ignoreCount
- the new ignored hits count to setCopyright (c) IBM Corp. and others 2000, 2016. All Rights Reserved.