org.scaladebugger.api.lowlevel.breakpoints
Retrieves the list of breakpoints contained by this manager.
Retrieves the list of breakpoints contained by this manager.
The collection of breakpoints in the form of information
Retrieves the list of breakpoints contained by this manager.
Retrieves the list of breakpoints contained by this manager.
The collection of breakpoints by id
Returns the collection of breakpoints representing the breakpoint for the specified line.
Returns the collection of breakpoints representing the breakpoint for the specified line.
The name of the file whose line to reference
The number of the line to check for breakpoints
Some collection of breakpoints for the specified line, or None if the specified line has no breakpoints
Returns the information for a breakpoint request with the specified id.
Returns the information for a breakpoint request with the specified id.
The id of the request
Some breakpoint information if found, otherwise None
Returns the collection of breakpoints with the specified id.
Returns the collection of breakpoints with the specified id.
The id of the request
Some collection of breakpoints for the specified line, or None if the specified line has no breakpoints
Determines whether or not the breakpoint for the specific file's line.
Determines whether or not the breakpoint for the specific file's line.
The name of the file whose line to reference
The number of the line to check for a breakpoint
True if a breakpoint exists, otherwise false
Determines whether or not the breakpoint with the specified id exists.
Determines whether or not the breakpoint with the specified id exists.
The id of the request
True if a breakpoint exists, otherwise false
Creates and enables a breakpoint on the specified line of the class.
Creates and enables a breakpoint on the specified line of the class.
The name of the file to set a breakpoint
The number of the line to break
Any additional arguments to provide to the request
Success(id) if successful, otherwise Failure
Creates and enables a breakpoint based on the specified information.
Creates and enables a breakpoint based on the specified information.
The information used to create the breakpoint request
Success(id) if successful, otherwise Failure
Creates and enables a breakpoint on the specified line of the class.
Creates and enables a breakpoint on the specified line of the class. Will also remove any pending breakpoints.
The id of the request used for lookup and removal
The name of the file to set a breakpoint
The number of the line to break
Any additional arguments to provide to the request
Success(id) if successful or pending, otherwise Failure
Disables pending support.
Disables pending support.
Enables pending support.
Enables pending support.
Indicates whether or not pending support is enabled.
Indicates whether or not pending support is enabled.
True if pending support enabled, otherwise false
Generates an id for a new request.
Generates an id for a new request.
The id as a string
Represents the manager used to store pending breakpoint requests and process them later.
Represents the manager used to store pending breakpoint requests and process them later.
Retrieves a list of all pending breakpoint requests.
Retrieves a list of all pending breakpoint requests.
The collection of breakpoint request information
Retrieves a list of pending breakpoint requests for the specified file.
Retrieves a list of pending breakpoint requests for the specified file.
The name of the file whose pending breakpoint requests to retrieve
The collection of breakpoint request information
Processes all pending breakpoint requests.
Processes all pending breakpoint requests.
The collection of successfully-processed breakpoint requests
Processes all pending breakpoint requests for the specified file.
Processes all pending breakpoint requests for the specified file.
The name of the file whose pending breakpoint requests to process
The collection of successfully-processed breakpoint requests
Removes the breakpoint on the specified line of the file.
Removes the breakpoint on the specified line of the file. Will also remove any pending breakpoints.
The name of the file to remove the breakpoint
The number of the line to break
True if successfully removed breakpoint, otherwise false
Removes the breakpoint on the specified line of the file.
Removes the breakpoint on the specified line of the file. Will also remove any pending breakpoints.
The id of the request to remove
True if successfully removed breakpoint, otherwise false
Sets enablement of pending support to the specified value.
Sets enablement of pending support to the specified value.
True if enabling support, otherwise false
Provides pending breakpoint capabilities to an existing breakpoint manager. Contains an internal pending action manager.