public class ContinuedEventArguments
extends java.lang.Object
Please note: a debug adapter is not expected to send this event in response to a request that implies that execution continues, e.g. 'launch' or 'continue'.
It is only necessary to send a 'continued' event if there was no previous request that implied this.
Constructor and Description |
---|
ContinuedEventArguments() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Boolean |
getAllThreadsContinued()
If 'allThreadsContinued' is true, a debug adapter can announce that all threads have continued.
|
int |
getThreadId()
The thread which was continued.
|
int |
hashCode() |
void |
setAllThreadsContinued(java.lang.Boolean allThreadsContinued)
If 'allThreadsContinued' is true, a debug adapter can announce that all threads have continued.
|
void |
setThreadId(int threadId)
The thread which was continued.
|
java.lang.String |
toString() |
@Pure public int getThreadId()
public void setThreadId(int threadId)
@Pure public java.lang.Boolean getAllThreadsContinued()
This is an optional property.
public void setAllThreadsContinued(java.lang.Boolean allThreadsContinued)
This is an optional property.
@Pure public java.lang.String toString()
toString
in class java.lang.Object
@Pure public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
@Pure public int hashCode()
hashCode
in class java.lang.Object