| Package | Description |
|---|---|
| com.google.api.services.clouddebugger.v2.model |
| Modifier and Type | Method and Description |
|---|---|
Variable |
Variable.clone() |
Variable |
Variable.set(java.lang.String fieldName,
java.lang.Object value) |
Variable |
Variable.setMembers(java.util.List<Variable> members)
Members contained or pointed to by the variable.
|
Variable |
Variable.setName(java.lang.String name)
Name of the variable, if any.
|
Variable |
Variable.setStatus(StatusMessage status)
Status associated with the variable.
|
Variable |
Variable.setType(java.lang.String type)
Variable type (e.g.
|
Variable |
Variable.setValue(java.lang.String value)
Simple value of the variable.
|
Variable |
Variable.setVarTableIndex(java.lang.Integer varTableIndex)
Reference to a variable in the shared variable table.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Variable> |
StackFrame.getArguments()
Set of arguments passed to this function.
|
java.util.List<Variable> |
Breakpoint.getEvaluatedExpressions()
Values of evaluated expressions at breakpoint time.
|
java.util.List<Variable> |
StackFrame.getLocals()
Set of local variables at the stack frame location.
|
java.util.List<Variable> |
Variable.getMembers()
Members contained or pointed to by the variable.
|
java.util.List<Variable> |
Breakpoint.getVariableTable()
The `variable_table` exists to aid with computation, memory and network traffic optimization.
|
| Modifier and Type | Method and Description |
|---|---|
StackFrame |
StackFrame.setArguments(java.util.List<Variable> arguments)
Set of arguments passed to this function.
|
Breakpoint |
Breakpoint.setEvaluatedExpressions(java.util.List<Variable> evaluatedExpressions)
Values of evaluated expressions at breakpoint time.
|
StackFrame |
StackFrame.setLocals(java.util.List<Variable> locals)
Set of local variables at the stack frame location.
|
Variable |
Variable.setMembers(java.util.List<Variable> members)
Members contained or pointed to by the variable.
|
Breakpoint |
Breakpoint.setVariableTable(java.util.List<Variable> variableTable)
The `variable_table` exists to aid with computation, memory and network traffic optimization.
|