org.scaladebugger.api.lowlevel.steps

PendingStepSupportLike

trait PendingStepSupportLike extends StepManager with PendingRequestSupport

Provides pending step capabilities to an existing access watchpoint manager.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PendingStepSupportLike
  2. PendingRequestSupport
  3. StepManager
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def createStepRequestWithId(requestId: String, removeExistingRequests: Boolean, threadReference: ThreadReference, size: Int, depth: Int, extraArguments: JDIRequestArgument*): Try[String]

    Creates and enables a step request for the given thread using the provided size (next valid location or next location on a new line) and depth (into, over, or out of the current frame).

    Creates and enables a step request for the given thread using the provided size (next valid location or next location on a new line) and depth (into, over, or out of the current frame).

    requestId

    The id of the request used for lookup and removal

    removeExistingRequests

    If true, will first remove any existing step requests for the specified thread

    threadReference

    The thread with which to perform the step

    size

    The size of the step request (LINE/MIN)

    depth

    The depth of the step request (INTO/OVER/OUT)

    extraArguments

    Any additional arguments to provide to the request

    returns

    Success(id) if successful, otherwise Failure

    Definition Classes
    StepManager
    Note

    Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.

  2. abstract def getStepRequest(threadReference: ThreadReference): Option[Seq[StepRequest]]

    Returns the collection of step requests for the specified thread.

    Returns the collection of step requests for the specified thread.

    threadReference

    The thread with which the step is associated

    returns

    Some collection of steps for the specified thread if it exists, otherwise None

    Definition Classes
    StepManager
  3. abstract def getStepRequestInfoWithId(requestId: String): Option[StepRequestInfo]

    Returns the arguments for a step request with the specified id.

    Returns the arguments for a step request with the specified id.

    requestId

    The id of the request

    returns

    Some step arguments if found, otherwise None

    Definition Classes
    StepManager
  4. abstract def getStepRequestWithId(requestId: String): Option[StepRequest]

    Returns the collection of steps with the specified id.

    Returns the collection of steps with the specified id.

    requestId

    The id of the request

    returns

    Some step request if the id exists, otherwise None

    Definition Classes
    StepManager
  5. abstract def hasStepRequest(threadReference: ThreadReference): Boolean

    Determines whether or not there is a step request for the specified thread.

    Determines whether or not there is a step request for the specified thread.

    threadReference

    The thread with which the step request is associated

    returns

    True if a step request for the thread exists, otherwise false

    Definition Classes
    StepManager
  6. abstract def hasStepRequestWithId(requestId: String): Boolean

    Determines whether or not the step request with the specified id exists.

    Determines whether or not the step request with the specified id exists.

    requestId

    The id of the request

    returns

    True if a step request with the id exists, otherwise false

    Definition Classes
    StepManager
  7. abstract def pendingStepRequests: Seq[StepRequestInfo]

    Retrieves a list of all pending step requests.

    Retrieves a list of all pending step requests.

    returns

    The collection of step request information

  8. abstract def pendingStepRequestsForThread(threadReference: ThreadReference): Seq[StepRequestInfo]

    Retrieves a list of pending step requests for the specified thread.

    Retrieves a list of pending step requests for the specified thread.

    threadReference

    The thread whose pending requests to retrieve

    returns

    The collection of successfully-processed step requests

  9. abstract def processAllPendingStepRequests(): Seq[StepRequestInfo]

    Processes all pending step requests.

    Processes all pending step requests.

    returns

    The collection of successfully-processed step requests

  10. abstract def processPendingStepRequestsForThread(threadReference: ThreadReference): Seq[StepRequestInfo]

    Processes all pending step requests for the specified thread.

    Processes all pending step requests for the specified thread.

    threadReference

    The thread whose pending requests to process

    returns

    The collection of successfully-processed step requests

  11. abstract def removeStepRequest(threadReference: ThreadReference): Boolean

    Removes the step requests for the specified thread.

    Removes the step requests for the specified thread.

    threadReference

    The thread with which the step is associated

    returns

    True if successfully removed the step request, otherwise false

    Definition Classes
    StepManager
  12. abstract def removeStepRequestWithId(requestId: String): Boolean

    Removes the step request with the specified id.

    Removes the step request with the specified id.

    requestId

    The id of the request

    returns

    True if successfully removed the step request, otherwise false

    Definition Classes
    StepManager
  13. abstract def stepRequestList: Seq[StepRequestInfo]

    Retrieves the list of steps contained by this manager.

    Retrieves the list of steps contained by this manager.

    returns

    The collection of steps in the form of thread reference

    Definition Classes
    StepManager
  14. abstract def stepRequestListById: Seq[String]

    Retrieves the list of steps contained by this manager.

    Retrieves the list of steps contained by this manager.

    returns

    The collection of steps by id

    Definition Classes
    StepManager

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def createStepIntoLineRequest(threadReference: ThreadReference, extraArguments: JDIRequestArgument*): Try[String]

    Creates a new step request to step into the next called method (in other words, enter the next frame created by a function on the current line or continue forward) for the next line location.

    Creates a new step request to step into the next called method (in other words, enter the next frame created by a function on the current line or continue forward) for the next line location.

    Removes any existing step requests for the specified thread.

    threadReference

    The thread where the step will occur

    extraArguments

    The additional arguments to provide to the request

    returns

    Success(id) if successful, otherwise Failure

    Definition Classes
    StepManager
    Note

    Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.

  9. def createStepIntoMinRequest(threadReference: ThreadReference, extraArguments: JDIRequestArgument*): Try[String]

    Creates a new step request to step into the next called method (in other words, enter the next frame created by a function on the current line or continue forward) for the next possible location.

    Creates a new step request to step into the next called method (in other words, enter the next frame created by a function on the current line or continue forward) for the next possible location.

    Removes any existing step requests for the specified thread.

    threadReference

    The thread where the step will occur

    extraArguments

    The additional arguments to provide to the request

    returns

    Success(id) if successful, otherwise Failure

    Definition Classes
    StepManager
    Note

    Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.

  10. def createStepOutLineRequest(threadReference: ThreadReference, extraArguments: JDIRequestArgument*): Try[String]

    Creates a new step request to step only into caller frames (in other words, exit the current frame of execution) for the next line location.

    Creates a new step request to step only into caller frames (in other words, exit the current frame of execution) for the next line location.

    Removes any existing step requests for the specified thread.

    threadReference

    The thread where the step will occur

    extraArguments

    The additional arguments to provide to the request

    returns

    Success(id) if successful, otherwise Failure

    Definition Classes
    StepManager
    Note

    Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.

  11. def createStepOutMinRequest(threadReference: ThreadReference, extraArguments: JDIRequestArgument*): Try[String]

    Creates a new step request to step only into caller frames (in other words, exit the current frame of execution) for the next possible location.

    Creates a new step request to step only into caller frames (in other words, exit the current frame of execution) for the next possible location.

    Removes any existing step requests for the specified thread.

    threadReference

    The thread where the step will occur

    extraArguments

    The additional arguments to provide to the request

    returns

    Success(id) if successful, otherwise Failure

    Definition Classes
    StepManager
    Note

    Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.

  12. def createStepOverLineRequest(threadReference: ThreadReference, extraArguments: JDIRequestArgument*): Try[String]

    Creates a new step request to step only into caller frames or the current frame (in other words, ignore any frames created by executing lines) for the next line location.

    Creates a new step request to step only into caller frames or the current frame (in other words, ignore any frames created by executing lines) for the next line location.

    Removes any existing step requests for the specified thread.

    threadReference

    The thread where the step will occur

    extraArguments

    The additional arguments to provide to the request

    returns

    Success(id) if successful, otherwise Failure

    Definition Classes
    StepManager
    Note

    Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.

  13. def createStepOverMinRequest(threadReference: ThreadReference, extraArguments: JDIRequestArgument*): Try[String]

    Creates a new step request to step only into caller frames or the current frame (in other words, ignore any frames created by executing lines) for the next possible location.

    Creates a new step request to step only into caller frames or the current frame (in other words, ignore any frames created by executing lines) for the next possible location.

    Removes any existing step requests for the specified thread.

    threadReference

    The thread where the step will occur

    extraArguments

    The additional arguments to provide to the request

    returns

    Success(id) if successful, otherwise Failure

    Definition Classes
    StepManager
    Note

    Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.

  14. def createStepRequest(threadReference: ThreadReference, size: Int, depth: Int, extraArguments: JDIRequestArgument*): Try[String]

    Creates and enables a step request for the given thread using the provided size (next valid location or next location on a new line) and depth (into, over, or out of the current frame).

    Creates and enables a step request for the given thread using the provided size (next valid location or next location on a new line) and depth (into, over, or out of the current frame).

    Removes any existing step requests for the specified thread.

    threadReference

    The thread with which to perform the step

    size

    The size of the step request (LINE/MIN)

    depth

    The depth of the step request (INTO/OVER/OUT)

    extraArguments

    Any additional arguments to provide to the request

    returns

    Success(id) if successful, otherwise Failure

    Definition Classes
    StepManager
    Note

    Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.

  15. def createStepRequestFromInfo(stepRequestInfo: StepRequestInfo): Try[String]

    Creates a step request based on the specified information.

    Creates a step request based on the specified information.

    stepRequestInfo

    The information used to create the step request

    returns

    Success(id) if successful, otherwise Failure

    Definition Classes
    StepManager
  16. def createStepRequestWithId(requestId: String, threadReference: ThreadReference, size: Int, depth: Int, extraArguments: JDIRequestArgument*): Try[String]

    Creates and enables a step request for the given thread using the provided size (next valid location or next location on a new line) and depth (into, over, or out of the current frame).

    Creates and enables a step request for the given thread using the provided size (next valid location or next location on a new line) and depth (into, over, or out of the current frame).

    Removes any existing step requests for the specified thread.

    requestId

    The id of the request used for lookup and removal

    threadReference

    The thread with which to perform the step

    size

    The size of the step request (LINE/MIN)

    depth

    The depth of the step request (INTO/OVER/OUT)

    extraArguments

    Any additional arguments to provide to the request

    returns

    Success(id) if successful, otherwise Failure

    Definition Classes
    StepManager
    Note

    Includes a default count filter of 1. This can be overridden by providing a CountFilter(count = ???) as an extra argument.

  17. def disablePendingSupport(): Unit

    Disables pending support.

    Disables pending support.

    Definition Classes
    PendingRequestSupport
  18. def enablePendingSupport(): Unit

    Enables pending support.

    Enables pending support.

    Definition Classes
    PendingRequestSupport
  19. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  21. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  23. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. def isPendingSupportEnabled: Boolean

    Indicates whether or not pending support is enabled.

    Indicates whether or not pending support is enabled.

    returns

    True if pending support enabled, otherwise false

    Definition Classes
    PendingRequestSupport
  26. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  27. def newRequestId(): String

    Generates an id for a new request.

    Generates an id for a new request.

    returns

    The id as a string

    Attributes
    protected
    Definition Classes
    StepManager
  28. final def notify(): Unit

    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  30. def setPendingSupport(value: Boolean): Unit

    Sets enablement of pending support to the specified value.

    Sets enablement of pending support to the specified value.

    value

    True if enabling support, otherwise false

    Definition Classes
    PendingRequestSupport
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  32. def toString(): String

    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from PendingRequestSupport

Inherited from StepManager

Inherited from AnyRef

Inherited from Any

Ungrouped