Search results for "module:Tree::Simple"
Tree::Simple - A simple tree object
This module in an fully object-oriented implementation of a simple n-ary tree. It is built upon the concept of parent-child relationships, so therefore every Tree::Simple object has both a parent and a set of children (who themselves may have childre...
RSAVAGE/Tree-Simple-1.34 - 02 Feb 2021 01:26:51 UTC
XML::Simple::Tree - Tree object extension for XML::Simple data structures
This module extends XML::Simple by taking the data structure returned by XML::Simple::XMLin($xml_file, forcearray => 1) and putting it in a class complete with tree manipulation and traversal methods. Important to know is that XMLin is called with th...
AAKD/XML-Simple-Tree-0.03 - 09 Nov 2005 06:26:08 UTC
Tree::Simple::SAX - A set of classes for using Tree::Simple with XML
This is an early implementation of an XML::SAX handler which creates a Tree::Simple object hierarchy from the XML stream. It is currently in the proof-of-concept/experimental stages and I plan to add more features in the future. If anyone else is int...
STEVAN/Tree-Simple-SAX-0.01 - 11 Apr 2005 16:01:42 UTC
Tree::Simple::View - A set of classes for viewing Tree::Simple hierarchies
This serves as an abstract base class to the Tree::Simple::View::* classes. There are two implementing classes included here; Tree::Simple::View::HTML and Tree::Simple::View::DHTML. Other Tree::Simple::View::* classes are also being planned, see the ...
RSAVAGE/Tree-Simple-View-0.20 - 02 Feb 2021 01:38:36 UTC
Bundle::Tree::Simple - A CPAN bundle for Tree::Simple and related modules
This is a bundle file to install the Tree::Simple module and all associated modules. Since I tend to use all of these modules in most of my projects, this bundle is mostly to make my life easier....
STEVAN/Bundle-Tree-Simple-0.01 - 18 Feb 2005 16:35:11 UTC
Tree::Simple::Manager - A class for managing multiple Tree::Simple hierarchies
This is a class for managing multiple Tree::Simple hierarchies at a time. It integrates several Tree::Simple classes together to attempt to make things easier to manage. This is the third release of this module. It is currently tailored to my current...
STEVAN/Tree-Simple-Manager-0.07 - 05 Nov 2007 16:51:11 UTC
Tree::Simple::Visitor - Visitor object for Tree::Simple objects
This object has been revised into what I think is more intelligent approach to Visitor objects. This is now a more suitable base class for building your own Visitors. It is also the base class for the visitors found in the Tree::Simple::VisitorFactor...
RSAVAGE/Tree-Simple-1.34 - 02 Feb 2021 01:26:51 UTC
Gtk2::Ex::Simple::Tree - A simple interface to Gtk2's complex MVC tree widget
Gtk2 has a powerful, but complex MVC (Model, View, Controller) system used to implement list and tree widgets. Gtk2::Ex::Simple::Tree automates the complex setup work and allows you to treat the tree model as a more natural list of hash refs. After c...
RMCFARLA/Gtk2-Ex-Simple-Tree-0.50 - 02 Dec 2004 02:21:38 UTC
Tree::Simple::View::HTML - A class for viewing Tree::Simple hierarchies in HTML
This is a class for use with Tree::Simple object hierarchies to serve as a means of displaying them in HTML. It is the 'View', while the Tree::Simple object hierarchy would be the 'Model' in your standard Model-View-Controller paradigm. This class ou...
RSAVAGE/Tree-Simple-View-0.20 - 02 Feb 2021 01:38:36 UTC
Tree::Simple::View::DHTML - A class for viewing Tree::Simple hierarchies in DHTML
This is a class for use with Tree::Simple object hierarchies to serve as a means of displaying them in DHTML. It is the "View", while the Tree::Simple object hierarchy would be the "Model" in your standard Model-View-Controller paradigm. This class o...
RSAVAGE/Tree-Simple-View-0.20 - 02 Feb 2021 01:38:36 UTC
Tree::Simple::View::ASCII - A class for viewing Tree::Simple hierarchies in ASCII
This is a Tree::Simple::View subclass which provides simple ASCII formatting for trees. I had this code lying around, and I figured it was best to put it into here. This is an early release of this, and it lacks configuration parameter handling, but ...
RSAVAGE/Tree-Simple-View-0.20 - 02 Feb 2021 01:38:36 UTC
Tree::Simple::SAX::Handler - An XML::SAX Handler to create Tree::Simple objects from XML
This is a proof-of-concept XML::SAX handler which can build Tree::Simple hierarchies. See the Tree::Simple::SAX for more information....
STEVAN/Tree-Simple-SAX-0.01 - 11 Apr 2005 16:01:42 UTC
Tree::Simple::WithMetaData - A Tree::Simple subclass with added metadata handling
This is a very simple (but actually very handy) subclass of Tree::Simple. It adds node level metadata and the ability for tree's to "inherit" their parents metadata as well. Read the source, it's really simple actually....
STEVAN/Tree-Simple-Manager-0.07 - 05 Nov 2007 16:51:11 UTC
Tree::Simple::Visitor::Sort - A Visitor for sorting a Tree::Simple object hierarchy
This implements a recursive multi-level sort of a Tree::Simple hierarchy. I think this deserves some more explanation, and the best way to do that is visually. Given the tree: 1 1.3 1.2 1.2.2 1.2.1 1.1 4 4.1 2 2.1 3 3.3 3.2 3.1 A normal sort would pr...
RSAVAGE/Tree-Simple-VisitorFactory-0.16 - 02 Feb 2021 02:04:51 UTC
Tree::Simple::Manager::Index - A class for quick-access indexing for Tree::Simple hierarchies
This module will index a Tree::Simple hierarchy so that node's can be quickly accessed without needing to search the entire heirarchy. It currently will index the Tree::Simple nodes by their UID property. Plans for allowing other means of indexing ar...
STEVAN/Tree-Simple-Manager-0.07 - 05 Nov 2007 16:51:11 UTC
Tree::Simple::VisitorFactory - A factory object for dispensing Visitor objects
This object is really just a factory for dispensing Tree::Simple::Visitor::* objects. It is not required to use this package in order to use all the Visitors, it is just a somewhat convenient way to avoid having to type their long class names. I cons...
RSAVAGE/Tree-Simple-VisitorFactory-0.16 - 02 Feb 2021 02:04:51 UTC
Tree::Simple::View::Exceptions - A set of exceptions for Tree::Simple::View
This just creates and loads a few exceptions for use by the Tree::Simple::View classes. Nothing else to see really....
RSAVAGE/Tree-Simple-View-0.20 - 02 Feb 2021 01:38:36 UTC
Tree::Simple::Visitor::FindByUID - A Visitor for finding an element in a Tree::Simple hierarchy by UID
Given a UID and Tree::Simple hierarchy, this Visitor will attempt to find the node with the same UID....
RSAVAGE/Tree-Simple-VisitorFactory-0.16 - 02 Feb 2021 02:04:51 UTC
Tree::Simple::Visitor::FindByPath - A Visitor for finding an element in a Tree::Simple hierarchy with a path
Given a path and Tree::Simple hierarchy, this Visitor will attempt to find the node specified by the path....
RSAVAGE/Tree-Simple-VisitorFactory-0.16 - 02 Feb 2021 02:04:51 UTC
Tree::Simple::Manager::Exceptions - A set of exception classes for Tree::Simple::Manager
This module just creates a number of exceptions for use with the Tree::Simple::Manager classes....
STEVAN/Tree-Simple-Manager-0.07 - 05 Nov 2007 16:51:11 UTC