Class

org.scaladebugger.api.lowlevel.steps

DummyStepManager

Related Doc: package steps

Permalink

class DummyStepManager extends StepManager

Represents a step manager whose operations do nothing.

Linear Supertypes
StepManager, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DummyStepManager
  2. StepManager
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DummyStepManager()

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

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

    Permalink

    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.

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

    Permalink

    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.

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

    Permalink

    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.

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

    Permalink

    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.

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

    Permalink

    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.

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

    Permalink

    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.

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

    Permalink

    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.

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

    Permalink

    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
  14. def createStepRequestWithId(requestId: String, removeExistingRequests: Boolean, threadReference: ThreadReference, size: Int, depth: Int, extraArguments: JDIRequestArgument*): Try[String]

    Permalink

    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
    DummyStepManagerStepManager
    Note

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

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

    Permalink

    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.

  16. final def eq(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. def getStepRequest(threadReference: ThreadReference): Option[Seq[StepRequest]]

    Permalink

    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
    DummyStepManagerStepManager
  21. def getStepRequestInfoWithId(requestId: String): Option[StepRequestInfo]

    Permalink

    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
    DummyStepManagerStepManager
  22. def getStepRequestWithId(requestId: String): Option[StepRequest]

    Permalink

    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
    DummyStepManagerStepManager
  23. def hasStepRequest(threadReference: ThreadReference): Boolean

    Permalink

    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
    DummyStepManagerStepManager
  24. def hasStepRequestWithId(requestId: String): Boolean

    Permalink

    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
    DummyStepManagerStepManager
  25. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. def newRequestId(): String

    Permalink

    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
  29. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. def removeStepRequest(threadReference: ThreadReference): Boolean

    Permalink

    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
    DummyStepManagerStepManager
  32. def removeStepRequestWithId(requestId: String): Boolean

    Permalink

    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
    DummyStepManagerStepManager
  33. def stepRequestList: Seq[StepRequestInfo]

    Permalink

    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
    DummyStepManagerStepManager
  34. def stepRequestListById: Seq[String]

    Permalink

    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
    DummyStepManagerStepManager
  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  36. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from StepManager

Inherited from AnyRef

Inherited from Any

Ungrouped