Package org.eclipse.lsp4j.debug
Class RunInTerminalResponse
- java.lang.Object
-
- org.eclipse.lsp4j.debug.RunInTerminalResponse
-
public class RunInTerminalResponse extends java.lang.Object
Response to 'runInTerminal' request.
-
-
Constructor Summary
Constructors Constructor Description RunInTerminalResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.Integer
getProcessId()
The process ID.java.lang.Integer
getShellProcessId()
The process ID of the terminal shell.int
hashCode()
void
setProcessId(java.lang.Integer processId)
The process ID.void
setShellProcessId(java.lang.Integer shellProcessId)
The process ID of the terminal shell.java.lang.String
toString()
-
-
-
Method Detail
-
getProcessId
public java.lang.Integer getProcessId()
The process ID. The value should be less than or equal to 2147483647 (2^31-1).This is an optional property.
-
setProcessId
public void setProcessId(java.lang.Integer processId)
The process ID. The value should be less than or equal to 2147483647 (2^31-1).This is an optional property.
-
getShellProcessId
public java.lang.Integer getShellProcessId()
The process ID of the terminal shell. The value should be less than or equal to 2147483647 (2^31-1).This is an optional property.
-
setShellProcessId
public void setShellProcessId(java.lang.Integer shellProcessId)
The process ID of the terminal shell. The value should be less than or equal to 2147483647 (2^31-1).This is an optional property.
-
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
-
-