Package org.eclipse.lsp4j.debug
Class SetExpressionArguments
- java.lang.Object
-
- org.eclipse.lsp4j.debug.SetExpressionArguments
-
public class SetExpressionArguments extends java.lang.Object
Arguments for 'setExpression' request.
-
-
Constructor Summary
Constructors Constructor Description SetExpressionArguments()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getExpression()
The l-value expression to assign to.ValueFormat
getFormat()
Specifies how the resulting value should be formatted.java.lang.Integer
getFrameId()
Evaluate the expressions in the scope of this stack frame.java.lang.String
getValue()
The value expression to assign to the l-value expression.int
hashCode()
void
setExpression(java.lang.String expression)
The l-value expression to assign to.void
setFormat(ValueFormat format)
Specifies how the resulting value should be formatted.void
setFrameId(java.lang.Integer frameId)
Evaluate the expressions in the scope of this stack frame.void
setValue(java.lang.String value)
The value expression to assign to the l-value expression.java.lang.String
toString()
-
-
-
Method Detail
-
getExpression
public java.lang.String getExpression()
The l-value expression to assign to.
-
setExpression
public void setExpression(java.lang.String expression)
The l-value expression to assign to.
-
getValue
public java.lang.String getValue()
The value expression to assign to the l-value expression.
-
setValue
public void setValue(java.lang.String value)
The value expression to assign to the l-value expression.
-
getFrameId
public java.lang.Integer getFrameId()
Evaluate the expressions in the scope of this stack frame. If not specified, the expressions are evaluated in the global scope.This is an optional property.
-
setFrameId
public void setFrameId(java.lang.Integer frameId)
Evaluate the expressions in the scope of this stack frame. If not specified, the expressions are evaluated in the global scope.This is an optional property.
-
getFormat
public ValueFormat getFormat()
Specifies how the resulting value should be formatted.This is an optional property.
-
setFormat
public void setFormat(ValueFormat format)
Specifies how the resulting value should be formatted.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
-
-