Class ReverseContinueArguments


  • public class ReverseContinueArguments
    extends java.lang.Object
    Arguments for 'reverseContinue' request.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.lang.Boolean getSingleThread()
      If this flag is true, backward execution is resumed only for the thread with given 'threadId'.
      int getThreadId()
      Specifies the active thread.
      int hashCode()  
      void setSingleThread​(java.lang.Boolean singleThread)
      If this flag is true, backward execution is resumed only for the thread with given 'threadId'.
      void setThreadId​(int threadId)
      Specifies the active thread.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ReverseContinueArguments

        public ReverseContinueArguments()
    • Method Detail

      • setThreadId

        public void setThreadId​(int threadId)
        Specifies the active thread. If the debug adapter supports single thread execution (see Capabilities.getSupportsSingleThreadExecutionRequests()) and the 'singleThread' argument is true, only the thread with this ID is resumed.
      • getSingleThread

        public java.lang.Boolean getSingleThread()
        If this flag is true, backward execution is resumed only for the thread with given 'threadId'.

        This is an optional property.

        Since 1.51

      • setSingleThread

        public void setSingleThread​(java.lang.Boolean singleThread)
        If this flag is true, backward execution is resumed only for the thread with given 'threadId'.

        This is an optional property.

        Since 1.51

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object