public class StoppedEventArguments
extends java.lang.Object
This can be caused by a break point previously set, a stepping request has completed, by executing a debugger statement etc.
Constructor and Description |
---|
StoppedEventArguments() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Boolean |
getAllThreadsStopped()
If 'allThreadsStopped' is true, a debug adapter can announce that all threads have stopped.
|
java.lang.String |
getDescription()
The full reason for the event, e.g.
|
java.lang.Boolean |
getPreserveFocusHint()
A value of true hints to the frontend that this event should not change the focus.
|
java.lang.String |
getReason()
The reason for the event.
|
java.lang.String |
getText()
Additional information.
|
java.lang.Integer |
getThreadId()
The thread which was stopped.
|
int |
hashCode() |
void |
setAllThreadsStopped(java.lang.Boolean allThreadsStopped)
If 'allThreadsStopped' is true, a debug adapter can announce that all threads have stopped.
|
void |
setDescription(java.lang.String description)
The full reason for the event, e.g.
|
void |
setPreserveFocusHint(java.lang.Boolean preserveFocusHint)
A value of true hints to the frontend that this event should not change the focus.
|
void |
setReason(java.lang.String reason)
The reason for the event.
|
void |
setText(java.lang.String text)
Additional information.
|
void |
setThreadId(java.lang.Integer threadId)
The thread which was stopped.
|
java.lang.String |
toString() |
@Pure public java.lang.String getReason()
For backward compatibility this string is shown in the UI if the 'description' attribute is missing (but it must not be translated).
Possible values include - but not limited to those defined in StoppedEventArgumentsReason
public void setReason(java.lang.String reason)
For backward compatibility this string is shown in the UI if the 'description' attribute is missing (but it must not be translated).
Possible values include - but not limited to those defined in StoppedEventArgumentsReason
@Pure public java.lang.String getDescription()
This is an optional property.
public void setDescription(java.lang.String description)
This is an optional property.
@Pure public java.lang.Integer getThreadId()
This is an optional property.
public void setThreadId(java.lang.Integer threadId)
This is an optional property.
@Pure public java.lang.Boolean getPreserveFocusHint()
This is an optional property.
public void setPreserveFocusHint(java.lang.Boolean preserveFocusHint)
This is an optional property.
@Pure public java.lang.String getText()
This is an optional property.
public void setText(java.lang.String text)
This is an optional property.
@Pure public java.lang.Boolean getAllThreadsStopped()
This is an optional property.
public void setAllThreadsStopped(java.lang.Boolean allThreadsStopped)
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