Package

org.scaladebugger.api.lowlevel

breakpoints

Permalink

package breakpoints

Visibility
  1. Public
  2. All

Type Members

  1. trait BreakpointManager extends AnyRef

    Permalink

    Represents the manager for breakpoint requests.

  2. case class BreakpointRequestInfo(requestId: String, isPending: Boolean, fileName: String, lineNumber: Int, extraArguments: Seq[JDIRequestArgument] = Nil) extends RequestInfo with Product with Serializable

    Permalink

    Represents information about a breakpoint request.

    Represents information about a breakpoint request.

    requestId

    The id of the request

    isPending

    Whether or not this request is pending (not on remote JVM)

    fileName

    The name of the file containing the breakpoint

    lineNumber

    The number of the line where the breakpoint is set

    extraArguments

    The additional arguments provided to the breakpoint

  3. class DummyBreakpointManager extends BreakpointManager

    Permalink

    Represents a breakpoint manager whose operations do nothing.

  4. case class NoBreakpointLocationFound(fileName: String, lineNumber: Int) extends Throwable with Product with Serializable

    Permalink

    Represents an exception that occurred when attempting to create a breakpoint request and the desired class or line was not found on the remote JVM.

    Represents an exception that occurred when attempting to create a breakpoint request and the desired class or line was not found on the remote JVM.

    fileName

    The name of the file where the breakpoint was attempted

    lineNumber

    The number of the line where the breakpoint was attempted

  5. trait PendingBreakpointSupport extends PendingBreakpointSupportLike

    Permalink

    Provides pending breakpoint capabilities to an existing breakpoint manager.

  6. trait PendingBreakpointSupportLike extends BreakpointManager with PendingRequestSupport

    Permalink

    Provides pending breakpoint capabilities to an existing breakpoint manager.

  7. class StandardBreakpointManager extends BreakpointManager with Logging

    Permalink

    Represents the manager for breakpoint requests.

  8. trait StandardPendingBreakpointSupport extends PendingBreakpointSupport

    Permalink

    Provides pending breakpoint capabilities to an existing breakpoint manager.

    Provides pending breakpoint capabilities to an existing breakpoint manager. Contains an internal pending action manager.

Ungrouped