org.scaladebugger.api.profiles.traits.steps

StepProfile

Related Doc: package steps

trait StepProfile extends AnyRef

Represents the interface that needs to be implemented to provide step functionality for a specific debug profile.

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

Type Members

  1. type StepEventAndData = (StepEvent, Seq[JDIEventDataResult])

    Represents a step event and any associated data.

Abstract Value Members

  1. abstract def onStepWithData(threadReference: ThreadReference, extraArguments: JDIArgument*): Try[IdentityPipeline[StepEventAndData]]

    Constructs a stream of step events.

    Constructs a stream of step events.

    threadReference

    The thread with which to receive step events

    extraArguments

    The additional JDI arguments to provide

    returns

    The stream of step events and any retrieved data based on requests from extra arguments

  2. abstract def stepIntoLineWithData(threadReference: ThreadReference, extraArguments: JDIArgument*): Future[StepEventAndData]

    Steps in from the current location to the next line.

    Steps in from the current location to the next line.

    threadReference

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event and any retrieved data based on requests from extra arguments

  3. abstract def stepIntoMinWithData(threadReference: ThreadReference, extraArguments: JDIArgument*): Future[StepEventAndData]

    Steps in from the current location to the next location.

    Steps in from the current location to the next location.

    threadReference

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event and any retrieved data based on requests from extra arguments

  4. abstract def stepOutLineWithData(threadReference: ThreadReference, extraArguments: JDIArgument*): Future[StepEventAndData]

    Steps out from the current location to the next line.

    Steps out from the current location to the next line.

    threadReference

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event and any retrieved data based on requests from extra arguments

  5. abstract def stepOutMinWithData(threadReference: ThreadReference, extraArguments: JDIArgument*): Future[StepEventAndData]

    Steps out from the current location to the next location.

    Steps out from the current location to the next location.

    threadReference

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event and any retrieved data based on requests from extra arguments

  6. abstract def stepOverLineWithData(threadReference: ThreadReference, extraArguments: JDIArgument*): Future[StepEventAndData]

    Steps over from the current location to the next line.

    Steps over from the current location to the next line.

    threadReference

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event and any retrieved data based on requests from extra arguments

  7. abstract def stepOverMinWithData(threadReference: ThreadReference, extraArguments: JDIArgument*): Future[StepEventAndData]

    Steps over from the current location to the next location.

    Steps over from the current location to the next location.

    threadReference

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event and any retrieved data based on requests from extra arguments

Concrete Value Members

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

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

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

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

    Definition Classes
    Any
  5. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

    Definition Classes
    AnyRef
  13. final def notify(): Unit

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

    Definition Classes
    AnyRef
  15. def onStep(threadReference: ThreadReference, extraArguments: JDIArgument*): Try[IdentityPipeline[StepEvent]]

    Constructs a stream of step events.

    Constructs a stream of step events.

    threadReference

    The thread with which to receive step events

    extraArguments

    The additional JDI arguments to provide

    returns

    The stream of step events

  16. def onUnsafeStep(threadReference: ThreadReference, extraArguments: JDIArgument*): IdentityPipeline[StepEvent]

    Constructs a stream of step events.

    Constructs a stream of step events.

    threadReference

    The thread with which to receive step events

    extraArguments

    The additional JDI arguments to provide

    returns

    The stream of step events

  17. def onUnsafeStepWithData(threadReference: ThreadReference, extraArguments: JDIArgument*): IdentityPipeline[StepEventAndData]

    Constructs a stream of step events.

    Constructs a stream of step events.

    threadReference

    The thread with which to receive step events

    extraArguments

    The additional JDI arguments to provide

    returns

    The stream of step events and any retrieved data based on requests from extra arguments

  18. def stepIntoLine(threadReference: ThreadReference, extraArguments: JDIArgument*): Future[StepEvent]

    Steps in from the current location to the next line.

    Steps in from the current location to the next line.

    threadReference

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event

  19. def stepIntoMin(threadReference: ThreadReference, extraArguments: JDIArgument*): Future[StepEvent]

    Steps in from the current location to the next location.

    Steps in from the current location to the next location.

    threadReference

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event

  20. def stepOutLine(threadReference: ThreadReference, extraArguments: JDIArgument*): Future[StepEvent]

    Steps out from the current location to the next line.

    Steps out from the current location to the next line.

    threadReference

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event

  21. def stepOutMin(threadReference: ThreadReference, extraArguments: JDIArgument*): Future[StepEvent]

    Steps out from the current location to the next location.

    Steps out from the current location to the next location.

    threadReference

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event

  22. def stepOverLine(threadReference: ThreadReference, extraArguments: JDIArgument*): Future[StepEvent]

    Steps over from the current location to the next line.

    Steps over from the current location to the next line.

    threadReference

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event

  23. def stepOverMin(threadReference: ThreadReference, extraArguments: JDIArgument*): Future[StepEvent]

    Steps over from the current location to the next location.

    Steps over from the current location to the next location.

    threadReference

    The thread in which to perform the step

    extraArguments

    The additional JDI arguments to provide

    returns

    The resulting one-time event

  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  25. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped