Package org.eclipse.lsp4j.debug
Class SetVariableArguments
- java.lang.Object
-
- org.eclipse.lsp4j.debug.SetVariableArguments
-
public class SetVariableArguments extends java.lang.Object
Arguments for 'setVariable' request.
-
-
Constructor Summary
Constructors Constructor Description SetVariableArguments()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
ValueFormat
getFormat()
Specifies details on how to format the response value.java.lang.String
getName()
The name of the variable in the container.java.lang.String
getValue()
The value of the variable.int
getVariablesReference()
The reference of the variable container.int
hashCode()
void
setFormat(ValueFormat format)
Specifies details on how to format the response value.void
setName(java.lang.String name)
The name of the variable in the container.void
setValue(java.lang.String value)
The value of the variable.void
setVariablesReference(int variablesReference)
The reference of the variable container.java.lang.String
toString()
-
-
-
Method Detail
-
getVariablesReference
public int getVariablesReference()
The reference of the variable container. The `variablesReference` must have been obtained in the current suspended state. See 'Lifetime of Object References' in theDebugProtocol.Overview
section for details.
-
setVariablesReference
public void setVariablesReference(int variablesReference)
The reference of the variable container. The `variablesReference` must have been obtained in the current suspended state. See 'Lifetime of Object References' in theDebugProtocol.Overview
section for details.
-
getName
public java.lang.String getName()
The name of the variable in the container.
-
setName
public void setName(java.lang.String name)
The name of the variable in the container.
-
getValue
public java.lang.String getValue()
The value of the variable.
-
setValue
public void setValue(java.lang.String value)
The value of the variable.
-
getFormat
public ValueFormat getFormat()
Specifies details on how to format the response value.This is an optional property.
-
setFormat
public void setFormat(ValueFormat format)
Specifies details on how to format the response value.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
-
-