package breakpoints
Type Members
-
trait
BreakpointManager
extends AnyRef
Represents the manager for breakpoint requests.
-
case class
BreakpointRequestInfo
(requestId: String, isPending: Boolean, fileName: String, lineNumber: Int, extraArguments: Seq[JDIRequestArgument] = Nil) extends RequestInfo with Product with Serializable
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
-
class
DummyBreakpointManager
extends BreakpointManager
Represents a breakpoint manager whose operations do nothing.
-
case class
NoBreakpointLocationFound
(fileName: String, lineNumber: Int) extends Throwable with Product with Serializable
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
-
trait
PendingBreakpointSupport
extends PendingBreakpointSupportLike
Provides pending breakpoint capabilities to an existing breakpoint manager.
-
trait
PendingBreakpointSupportLike
extends BreakpointManager with PendingRequestSupport
Provides pending breakpoint capabilities to an existing breakpoint manager.
-
class
StandardBreakpointManager
extends BreakpointManager with Logging
Represents the manager for breakpoint requests.
-
trait
StandardPendingBreakpointSupport
extends PendingBreakpointSupport
Provides pending breakpoint capabilities to an existing breakpoint manager.
Provides pending breakpoint capabilities to an existing breakpoint manager. Contains an internal pending action manager.