-
public final class SetVariableValueRequestRequest object containing input parameters for the DebuggerDomain.setVariableValue command.
-
-
Field Summary
Fields Modifier and Type Field Description private final IntegerscopeNumberprivate final StringvariableNameprivate final CallArgumentnewValueprivate final StringcallFrameId
-
Constructor Summary
Constructors Constructor Description SetVariableValueRequest(Integer scopeNumber, String variableName, CallArgument newValue, String callFrameId)
-
Method Summary
Modifier and Type Method Description final Integercomponent1()final Stringcomponent2()final CallArgumentcomponent3()final Stringcomponent4()final SetVariableValueRequestcopy(Integer scopeNumber, String variableName, CallArgument newValue, String callFrameId)final IntegergetScopeNumber()0-based number of scope as was listed in scope chain. final StringgetVariableName()Variable name. final CallArgumentgetNewValue()New variable value. final StringgetCallFrameId()Id of callframe that holds variable. -
-
Constructor Detail
-
SetVariableValueRequest
SetVariableValueRequest(Integer scopeNumber, String variableName, CallArgument newValue, String callFrameId)
-
-
Method Detail
-
component1
final Integer component1()
-
component2
final String component2()
-
component3
final CallArgument component3()
-
component4
final String component4()
-
copy
final SetVariableValueRequest copy(Integer scopeNumber, String variableName, CallArgument newValue, String callFrameId)
-
getScopeNumber
final Integer getScopeNumber()
0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch' scope types are allowed. Other scopes could be manipulated manually.
-
getVariableName
final String getVariableName()
Variable name.
-
getNewValue
final CallArgument getNewValue()
New variable value.
-
getCallFrameId
final String getCallFrameId()
Id of callframe that holds variable.
-
-
-
-