org.scaladebugger.api.lowlevel.steps
Creates a new step request to step into the next called method (in other words, enter the next frame created by a function on the current line or continue forward) for the next line location.
Creates a new step request to step into the next called method (in other words, enter the next frame created by a function on the current line or continue forward) for the next line location.
Removes any existing step requests for the specified thread.
The thread where the step will occur
The additional arguments to provide to the request
Success(id) if successful, otherwise Failure
Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.
Creates a new step request to step into the next called method (in other words, enter the next frame created by a function on the current line or continue forward) for the next possible location.
Creates a new step request to step into the next called method (in other words, enter the next frame created by a function on the current line or continue forward) for the next possible location.
Removes any existing step requests for the specified thread.
The thread where the step will occur
The additional arguments to provide to the request
Success(id) if successful, otherwise Failure
Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.
Creates a new step request to step only into caller frames (in other words, exit the current frame of execution) for the next line location.
Creates a new step request to step only into caller frames (in other words, exit the current frame of execution) for the next line location.
Removes any existing step requests for the specified thread.
The thread where the step will occur
The additional arguments to provide to the request
Success(id) if successful, otherwise Failure
Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.
Creates a new step request to step only into caller frames (in other words, exit the current frame of execution) for the next possible location.
Creates a new step request to step only into caller frames (in other words, exit the current frame of execution) for the next possible location.
Removes any existing step requests for the specified thread.
The thread where the step will occur
The additional arguments to provide to the request
Success(id) if successful, otherwise Failure
Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.
Creates a new step request to step only into caller frames or the current frame (in other words, ignore any frames created by executing lines) for the next line location.
Creates a new step request to step only into caller frames or the current frame (in other words, ignore any frames created by executing lines) for the next line location.
Removes any existing step requests for the specified thread.
The thread where the step will occur
The additional arguments to provide to the request
Success(id) if successful, otherwise Failure
Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.
Creates a new step request to step only into caller frames or the current frame (in other words, ignore any frames created by executing lines) for the next possible location.
Creates a new step request to step only into caller frames or the current frame (in other words, ignore any frames created by executing lines) for the next possible location.
Removes any existing step requests for the specified thread.
The thread where the step will occur
The additional arguments to provide to the request
Success(id) if successful, otherwise Failure
Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.
Creates and enables a step request for the given thread using the provided size (next valid location or next location on a new line) and depth (into, over, or out of the current frame).
Creates and enables a step request for the given thread using the provided size (next valid location or next location on a new line) and depth (into, over, or out of the current frame).
Removes any existing step requests for the specified thread.
The thread with which to perform the step
The size of the step request (LINE/MIN)
The depth of the step request (INTO/OVER/OUT)
Any additional arguments to provide to the request
Success(id) if successful, otherwise Failure
Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.
Creates a step request based on the specified information.
Creates a step request based on the specified information.
The information used to create the step request
Success(id) if successful, otherwise Failure
Creates and enables a step request for the given thread using the provided size (next valid location or next location on a new line) and depth (into, over, or out of the current frame).
Creates and enables a step request for the given thread using the provided size (next valid location or next location on a new line) and depth (into, over, or out of the current frame).
The id of the request used for lookup and removal
If true, will first remove any existing step requests for the specified thread
The thread with which to perform the step
The size of the step request (LINE/MIN)
The depth of the step request (INTO/OVER/OUT)
Any additional arguments to provide to the request
Success(id) if successful, otherwise Failure
Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.
Creates and enables a step request for the given thread using the provided size (next valid location or next location on a new line) and depth (into, over, or out of the current frame).
Creates and enables a step request for the given thread using the provided size (next valid location or next location on a new line) and depth (into, over, or out of the current frame).
Removes any existing step requests for the specified thread.
The id of the request used for lookup and removal
The thread with which to perform the step
The size of the step request (LINE/MIN)
The depth of the step request (INTO/OVER/OUT)
Any additional arguments to provide to the request
Success(id) if successful, otherwise Failure
Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.
Returns the collection of step requests for the specified thread.
Returns the collection of step requests for the specified thread.
The thread with which the step is associated
Some collection of steps for the specified thread if it exists, otherwise None
Returns the arguments for a step request with the specified id.
Returns the arguments for a step request with the specified id.
The id of the request
Some step arguments if found, otherwise None
Returns the collection of steps with the specified id.
Returns the collection of steps with the specified id.
The id of the request
Some step request if the id exists, otherwise None
Determines whether or not there is a step request for the specified thread.
Determines whether or not there is a step request for the specified thread.
The thread with which the step request is associated
True if a step request for the thread exists, otherwise false
Determines whether or not the step request with the specified id exists.
Determines whether or not the step request with the specified id exists.
The id of the request
True if a step request with the id exists, otherwise false
Generates an id for a new request.
Generates an id for a new request.
The id as a string
Removes the step requests for the specified thread.
Removes the step requests for the specified thread.
The thread with which the step is associated
True if successfully removed the step request, otherwise false
Removes the step request with the specified id.
Removes the step request with the specified id.
The id of the request
True if successfully removed the step request, otherwise false
Retrieves the list of steps contained by this manager.
Retrieves the list of steps contained by this manager.
The collection of steps in the form of thread reference
Retrieves the list of steps contained by this manager.
Retrieves the list of steps contained by this manager.
The collection of steps by id
Represents a step manager whose operations do nothing.