Package org.eclipse.lsp4j.debug
Class StartDebuggingRequestArguments
- java.lang.Object
-
- org.eclipse.lsp4j.debug.StartDebuggingRequestArguments
-
public class StartDebuggingRequestArguments extends java.lang.Object
Arguments for 'startDebugging' request.
-
-
Constructor Summary
Constructors Constructor Description StartDebuggingRequestArguments()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.util.Map<java.lang.String,?>
getConfiguration()
Arguments passed to the new debug session.StartDebuggingRequestArgumentsType
getRequest()
Indicates whether the new debug session should be started with a `launch` or `attach` request.int
hashCode()
void
setConfiguration(java.util.Map<java.lang.String,?> configuration)
Arguments passed to the new debug session.void
setRequest(StartDebuggingRequestArgumentsType request)
Indicates whether the new debug session should be started with a `launch` or `attach` request.java.lang.String
toString()
-
-
-
Method Detail
-
getConfiguration
public java.util.Map<java.lang.String,?> getConfiguration()
Arguments passed to the new debug session. The arguments must only contain properties understood by the `launch` or `attach` requests of the debug adapter and they must not contain any client-specific properties (e.g. `type`) or client-specific features (e.g. substitutable 'variables').
-
setConfiguration
public void setConfiguration(java.util.Map<java.lang.String,?> configuration)
Arguments passed to the new debug session. The arguments must only contain properties understood by the `launch` or `attach` requests of the debug adapter and they must not contain any client-specific properties (e.g. `type`) or client-specific features (e.g. substitutable 'variables').
-
getRequest
public StartDebuggingRequestArgumentsType getRequest()
Indicates whether the new debug session should be started with a `launch` or `attach` request.
-
setRequest
public void setRequest(StartDebuggingRequestArgumentsType request)
Indicates whether the new debug session should be started with a `launch` or `attach` request.
-
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
-
-