Class VariableModel.VariableNode
- java.lang.Object
-
- org.mozilla.javascript.tools.debugger.VariableModel.VariableNode
-
- Enclosing class:
- VariableModel
private static class VariableModel.VariableNode extends java.lang.Object
A variable node in the tree.
-
-
Field Summary
Fields Modifier and Type Field Description private VariableModel.VariableNode[]
children
Array of child nodes.private java.lang.Object
id
The object name.private java.lang.Object
object
The script object.
-
Constructor Summary
Constructors Constructor Description VariableNode(java.lang.Object object, java.lang.Object id)
Creates a new VariableNode.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
Returns a string representation of this node.
-
-
-
Field Detail
-
object
private java.lang.Object object
The script object.
-
id
private java.lang.Object id
The object name. Either a String or an Integer.
-
children
private VariableModel.VariableNode[] children
Array of child nodes. This is filled with the properties of the object.
-
-