Package

org.scaladebugger.api.lowlevel

methods

Permalink

package methods

Visibility
  1. Public
  2. All

Type Members

  1. class DummyMethodEntryManager extends MethodEntryManager

    Permalink

    Represents a method entry manager whose operations do nothing.

  2. class DummyMethodExitManager extends MethodExitManager

    Permalink

    Represents a method exit manager whose operations do nothing.

  3. trait MethodEntryManager extends AnyRef

    Permalink

    Represents the manager for method entry requests.

  4. case class MethodEntryRequestInfo(requestId: String, isPending: Boolean, className: String, methodName: String, extraArguments: Seq[JDIRequestArgument] = Nil) extends RequestInfo with Product with Serializable

    Permalink

    Represents information about a method entry request.

    Represents information about a method entry request.

    requestId

    The id of the request

    isPending

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

    className

    The full name of the class containing the method

    methodName

    The name of the method

    extraArguments

    The additional arguments provided to the method entry request

  5. trait MethodExitManager extends AnyRef

    Permalink

    Represents the manager for method exit requests.

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

    Permalink

    Represents information about a method exit request.

    Represents information about a method exit request.

    requestId

    The id of the request

    isPending

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

    className

    The full name of the class containing the method

    methodName

    The name of the method

    extraArguments

    The additional arguments provided to the method exit request

  7. case class NoClassMethodFound(className: String, methodName: String) extends Throwable with Product with Serializable

    Permalink

    Represents an exception that occurred when attempting to create a method entry/exit request and the desired class or method was not found on the remote JVM.

    Represents an exception that occurred when attempting to create a method entry/exit request and the desired class or method was not found on the remote JVM.

    className

    The name of the class where the method entry/exit was attempted

    methodName

    The name of the method where the method entry/exit was attempted

  8. trait PendingMethodEntrySupport extends PendingMethodEntrySupportLike

    Permalink

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

  9. trait PendingMethodEntrySupportLike extends MethodEntryManager with PendingRequestSupport

    Permalink

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

  10. trait PendingMethodExitSupport extends PendingMethodExitSupportLike

    Permalink

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

  11. trait PendingMethodExitSupportLike extends MethodExitManager with PendingRequestSupport

    Permalink

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

  12. class StandardMethodEntryManager extends MethodEntryManager with Logging

    Permalink

    Represents the manager for method entry requests.

  13. class StandardMethodExitManager extends MethodExitManager with Logging

    Permalink

    Represents the manager for method exit requests.

  14. trait StandardPendingMethodEntrySupport extends PendingMethodEntrySupport

    Permalink

    Provides pending method entry capabilities to an existing method entry manager.

    Provides pending method entry capabilities to an existing method entry manager.

    Contains an internal pending action manager.

  15. trait StandardPendingMethodExitSupport extends PendingMethodExitSupport

    Permalink

    Provides pending method exit capabilities to an existing method exit manager.

    Provides pending method exit capabilities to an existing method exit manager.

    Contains an internal pending action manager.

Ungrouped