public class InitializeRequestArguments
extends java.lang.Object
Constructor and Description |
---|
InitializeRequestArguments() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getAdapterID()
The ID of the debug adapter.
|
java.lang.String |
getClientID()
The ID of the (frontend) client using this adapter.
|
java.lang.String |
getClientName()
The human readable name of the (frontend) client using this adapter.
|
java.lang.Boolean |
getColumnsStartAt1()
If true all column numbers are 1-based (default).
|
java.lang.Boolean |
getLinesStartAt1()
If true all line numbers are 1-based (default).
|
java.lang.String |
getLocale()
The ISO-639 locale of the (frontend) client using this adapter, e.g.
|
java.lang.String |
getPathFormat()
Determines in what format paths are specified.
|
java.lang.Boolean |
getSupportsInvalidatedEvent()
Client supports the invalidated event.
|
java.lang.Boolean |
getSupportsMemoryReferences()
Client supports memory references.
|
java.lang.Boolean |
getSupportsProgressReporting()
Client supports progress reporting.
|
java.lang.Boolean |
getSupportsRunInTerminalRequest()
Client supports the runInTerminal request.
|
java.lang.Boolean |
getSupportsVariablePaging()
Client supports the paging of variables.
|
java.lang.Boolean |
getSupportsVariableType()
Client supports the optional type attribute for variables.
|
int |
hashCode() |
void |
setAdapterID(java.lang.String adapterID)
The ID of the debug adapter.
|
void |
setClientID(java.lang.String clientID)
The ID of the (frontend) client using this adapter.
|
void |
setClientName(java.lang.String clientName)
The human readable name of the (frontend) client using this adapter.
|
void |
setColumnsStartAt1(java.lang.Boolean columnsStartAt1)
If true all column numbers are 1-based (default).
|
void |
setLinesStartAt1(java.lang.Boolean linesStartAt1)
If true all line numbers are 1-based (default).
|
void |
setLocale(java.lang.String locale)
The ISO-639 locale of the (frontend) client using this adapter, e.g.
|
void |
setPathFormat(java.lang.String pathFormat)
Determines in what format paths are specified.
|
void |
setSupportsInvalidatedEvent(java.lang.Boolean supportsInvalidatedEvent)
Client supports the invalidated event.
|
void |
setSupportsMemoryReferences(java.lang.Boolean supportsMemoryReferences)
Client supports memory references.
|
void |
setSupportsProgressReporting(java.lang.Boolean supportsProgressReporting)
Client supports progress reporting.
|
void |
setSupportsRunInTerminalRequest(java.lang.Boolean supportsRunInTerminalRequest)
Client supports the runInTerminal request.
|
void |
setSupportsVariablePaging(java.lang.Boolean supportsVariablePaging)
Client supports the paging of variables.
|
void |
setSupportsVariableType(java.lang.Boolean supportsVariableType)
Client supports the optional type attribute for variables.
|
java.lang.String |
toString() |
@Pure public java.lang.String getClientID()
This is an optional property.
public void setClientID(java.lang.String clientID)
This is an optional property.
@Pure public java.lang.String getClientName()
This is an optional property.
public void setClientName(java.lang.String clientName)
This is an optional property.
@Pure public java.lang.String getAdapterID()
public void setAdapterID(java.lang.String adapterID)
@Pure public java.lang.String getLocale()
This is an optional property.
public void setLocale(java.lang.String locale)
This is an optional property.
@Pure public java.lang.Boolean getLinesStartAt1()
This is an optional property.
public void setLinesStartAt1(java.lang.Boolean linesStartAt1)
This is an optional property.
@Pure public java.lang.Boolean getColumnsStartAt1()
This is an optional property.
public void setColumnsStartAt1(java.lang.Boolean columnsStartAt1)
This is an optional property.
@Pure public java.lang.String getPathFormat()
This is an optional property.
Possible values include - but not limited to those defined in InitializeRequestArgumentsPathFormat
public void setPathFormat(java.lang.String pathFormat)
This is an optional property.
Possible values include - but not limited to those defined in InitializeRequestArgumentsPathFormat
@Pure public java.lang.Boolean getSupportsVariableType()
This is an optional property.
public void setSupportsVariableType(java.lang.Boolean supportsVariableType)
This is an optional property.
@Pure public java.lang.Boolean getSupportsVariablePaging()
This is an optional property.
public void setSupportsVariablePaging(java.lang.Boolean supportsVariablePaging)
This is an optional property.
@Pure public java.lang.Boolean getSupportsRunInTerminalRequest()
This is an optional property.
public void setSupportsRunInTerminalRequest(java.lang.Boolean supportsRunInTerminalRequest)
This is an optional property.
@Pure public java.lang.Boolean getSupportsMemoryReferences()
This is an optional property.
public void setSupportsMemoryReferences(java.lang.Boolean supportsMemoryReferences)
This is an optional property.
@Pure public java.lang.Boolean getSupportsProgressReporting()
This is an optional property.
public void setSupportsProgressReporting(java.lang.Boolean supportsProgressReporting)
This is an optional property.
@Pure public java.lang.Boolean getSupportsInvalidatedEvent()
This is an optional property.
public void setSupportsInvalidatedEvent(java.lang.Boolean supportsInvalidatedEvent)
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