T - the type of the actual subclass.public abstract class TreeNode<IDENT,T extends TreeNode<IDENT,T>> extends Object
Please read also LibraryTree.
TreeNode is the type of node used by a LibraryTree. A TreeNode maintains informations regarding its position in the tree, ie its parent node, its layer/depth etc. Each node is identified by a key, that will be used to identify each node uniquely.
Subclasses of TreeNode should be genericized Enum-style, i.e. generics of themselves, and implement updateWith(TreeNode).
public TreeNode()
public TreeNode(IDENT key)
Copyright © 2010–2016 Henix, henix.fr. All rights reserved.