org.scaladebugger.api.lowlevel

watchpoints

package watchpoints

Visibility
  1. Public
  2. All

Type Members

  1. trait AccessWatchpointManager extends AnyRef

    Represents the manager for access watchpoint requests.

  2. case class AccessWatchpointRequestInfo(requestId: String, isPending: Boolean, className: String, fieldName: String, extraArguments: Seq[JDIRequestArgument] = immutable.this.Nil) extends RequestInfo with Product with Serializable

    Represents information about a access watchpoint request.

  3. class DummyAccessWatchpointManager extends AccessWatchpointManager

    Represents a access watchpoint manager whose operations do nothing.

  4. class DummyModificationWatchpointManager extends ModificationWatchpointManager

    Represents a modification watchpoint manager whose operations do nothing.

  5. trait ModificationWatchpointManager extends AnyRef

    Represents the manager for modification watchpoint requests.

  6. case class ModificationWatchpointRequestInfo(requestId: String, isPending: Boolean, className: String, fieldName: String, extraArguments: Seq[JDIRequestArgument] = immutable.this.Nil) extends RequestInfo with Product with Serializable

    Represents information about a modification watchpoint request.

  7. case class NoFieldFound(className: String, fieldName: String) extends Throwable with Product with Serializable

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

  8. trait PendingAccessWatchpointSupport extends PendingAccessWatchpointSupportLike

    Provides pending access watchpoint capabilities to an existing access watchpoint manager.

  9. trait PendingAccessWatchpointSupportLike extends AccessWatchpointManager with PendingRequestSupport

    Provides pending access watchpoint capabilities to an existing access watchpoint manager.

  10. trait PendingModificationWatchpointSupport extends PendingModificationWatchpointSupportLike

    Provides pending modification watchpoint capabilities to an existing modification watchpoint manager.

  11. trait PendingModificationWatchpointSupportLike extends ModificationWatchpointManager with PendingRequestSupport

    Provides pending modification watchpoint capabilities to an existing modification watchpoint manager.

  12. class StandardAccessWatchpointManager extends AccessWatchpointManager with Logging

    Represents the manager for access watchpoint requests.

  13. class StandardModificationWatchpointManager extends ModificationWatchpointManager with Logging

    Represents the manager for modification watchpoint requests.

  14. trait StandardPendingAccessWatchpointSupport extends PendingAccessWatchpointSupport

    Provides pending access watchpoint capabilities to an existing access watchpoint manager.

  15. trait StandardPendingModificationWatchpointSupport extends PendingModificationWatchpointSupport

    Provides pending modification watchpoint capabilities to an existing modification watchpoint manager.

Ungrouped