Constructor
new InspectorNode( node : Node, name : string, callback : function | null )
Creates an InspectorNode.
| node |
The node to inspect. |
| name |
Optional name for the inspector node. Default is |
| callback |
Optional callback to modify the node during setup. Default is |
Properties
.type
Returns the type of the node.
Methods
.getName() : string
Returns the name of the inspector node.
.getNodeType( builder : NodeBuilder ) : string
.setup( builder : NodeBuilder ) : Node
Sets up the inspector node.
| builder |
The node builder. |
- Overrides: Node#setup
- Returns: The setup node.
.update( frame : NodeFrame )
Updates the inspector node, allowing inspection of the wrapped node.
| frame |
A reference to the current node frame. |
- Overrides: Node#update