-
public final class StepIntoRequestRequest object containing input parameters for the DebuggerDomain.stepInto command.
-
-
Field Summary
Fields Modifier and Type Field Description private final BooleanbreakOnAsyncCallprivate final List<LocationRange>skipList
-
Constructor Summary
Constructors Constructor Description StepIntoRequest(Boolean breakOnAsyncCall, List<LocationRange> skipList)
-
Method Summary
Modifier and Type Method Description final Booleancomponent1()final List<LocationRange>component2()final StepIntoRequestcopy(Boolean breakOnAsyncCall, List<LocationRange> skipList)final BooleangetBreakOnAsyncCall()Debugger will pause on the execution of the first async task which was scheduled before next pause. final List<LocationRange>getSkipList()The skipList specifies location ranges that should be skipped on step into. -
-
Constructor Detail
-
StepIntoRequest
StepIntoRequest(Boolean breakOnAsyncCall, List<LocationRange> skipList)
-
-
Method Detail
-
component1
final Boolean component1()
-
component2
final List<LocationRange> component2()
-
copy
final StepIntoRequest copy(Boolean breakOnAsyncCall, List<LocationRange> skipList)
-
getBreakOnAsyncCall
final Boolean getBreakOnAsyncCall()
Debugger will pause on the execution of the first async task which was scheduled before next pause.
-
getSkipList
final List<LocationRange> getSkipList()
The skipList specifies location ranges that should be skipped on step into.
-
-
-
-