Pelzini

This is the code documentation for the Pelzini project

class TreeNode

A node in a tree

Source code (2 results)

/viewer/controllers/class.php   Highlighted file source

Line 303: $matcher = new FieldTreeNodeMatcher('name', $class['name']);

/viewer/tree.php   Highlighted file source

Line 33: class TreeNode implements ArrayAccess {
Line 42: public function addChild(TreeNode $child)
Line 106: * @param TreeNodeMatcher $matcher The class which is used to determine if a node should be found or not
Line 108: public function findNode(TreeNodeMatcher $matcher)
Line 130: while (! $node instanceof RootTreeNode) {
Line 161: class RootTreeNode extends TreeNode {
Line 174: $root = new RootTreeNode;
Line 182: $node = new TreeNode ();
Line 226: $node = new TreeNode ();
Line 247: interface TreeNodeMatcher {
Line 251: * @param TreeNode $node The node to check
Line 261: class FieldTreeNodeMatcher implements TreeNodeMatcher {
Line 275: * @param TreeNode $node The node to check
Line 302: $root = RootTreeNode::createFromDatabase ($res, 'name', 'extends');

A total of 15 lines in 2 files were found