Access keys

BaseTreeNode

Kind of class: class
Inherits from: none
Known subclasses:
Version: 20 July 2005
Author: Arthur Clemens
Classpath: data.tree.BaseTreeNode
File last modified: Monday, 25 July 2005, 00:40:12
Bare bones tree node class of a position tree: nodes with children, no left/right nodes.


Every BaseTreeNode subclass should implement a custom constructor and the (private) method createNewNode. That method is a Factory method; it returns for each subclass implementation the node with the desired type. When adding nodes to the Tree, all child nodes automatically 'inherit' the type from their parent.

Summary

Constructor

Constructor

BaseTreeNode

function BaseTreeNode (
inName:String, inProperties:Object)