Package org.eclipse.lsp4j.debug
Class ReverseContinueArguments
- java.lang.Object
-
- org.eclipse.lsp4j.debug.ReverseContinueArguments
-
public class ReverseContinueArguments extends java.lang.Object
Arguments for 'reverseContinue' request.
-
-
Constructor Summary
Constructors Constructor Description ReverseContinueArguments()
-
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()
-
-
-
Method Detail
-
getThreadId
public int getThreadId()
Specifies the active thread. If the debug adapter supports single thread execution (seeCapabilities.getSupportsSingleThreadExecutionRequests()
) and the 'singleThread' argument is true, only the thread with this ID is resumed.
-
setThreadId
public void setThreadId(int threadId)
Specifies the active thread. If the debug adapter supports single thread execution (seeCapabilities.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 classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-