Tree::Simple::Visitor::LoadClassHierarchy - A Visitor for loading class hierarchies into a Tree::Simple hierarchy |
Tree::Simple::Visitor::LoadClassHierarchy - A Visitor for loading class hierarchies into a Tree::Simple hierarchy
use Tree::Simple::Visitor::LoadClassHierarchy; # create an visitor my $visitor = Tree::Simple::Visitor::LoadClassHierarchy->new(); # set class as an instance, or $visitor->setClass($class); # as a package name $visitor->setClass("My::Class"); # pass our visitor to the tree $tree->accept($visitor); # the $tree now mirrors the inheritance hierarchy of the $class
This visitor will traverse a class's inheritance hierarchy (through the @ISA arrays) and create a Tree::Simple hierarchy which mirrors it.
setNodeFilter
method to customize its behavior.
$boolean
value to true (1
) will cause the node value of the $tree
object passed into visit
to be set with the root value found in the class heirarchy. Setting it to false (0
), or not setting it, will result in the first value in the class heirarchy creating a new node level.
$boolean
value to true (1
) will cause methods to be added as a children of the class node. Setting it to false (0
), or not setting it, will result in this not happening.
NOTE: Methods are sorted ascii-betically before they are added to the tree. This allows a more predictable heirarchy.
$class
should be either a class name or an instance, it is then used as the root from which to determine the class hierarchy.
$filter_function
argument and throws an exception if it is not a code reference. This code reference is used to filter the tree nodes as they are created, the $filter_function
is passed the node value extracted from the hash prior to it being inserted into the tree being built. The $filter_function
is expected to return the value desired for inclusion into the tree.
accept
method. It can also be used on its own, it requires the $tree
argument to be a Tree::Simple object (or derived from a Tree::Simple object), and will throw and exception otherwise.
The $tree
argument which is passed to visit
must be a leaf node. This is because this Visitor will create all the sub-nodes for this tree. If the tree is not a leaf, an exception is thrown. We do not require the tree to be a root though, and this Visitor will not affect any nodes above the $tree
argument.
includeMethods
functionalityincludeFullSymbolTable
functionality
None that I am aware of. Of course, if you find a bug, let me know, and I will be sure to fix it.
See the CODE COVERAGE section in the Tree::Simple::VisitorFactory manpage for more inforamtion.
These Visitor classes are all subclasses of Tree::Simple::Visitor, which can be found in the Tree::Simple module, you should refer to that module for more information.
stevan little, <stevan@iinteractive.com>
Copyright 2004, 2005 by Infinity Interactive, Inc.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Tree::Simple::Visitor::LoadClassHierarchy - A Visitor for loading class hierarchies into a Tree::Simple hierarchy |