NAME
Graph::Reader::LoadClassHierarchy - load Graphs from class hierarchies
SYNOPSIS
use Graph;
use Graph::Reader::LoadClassHierarchy;
my $reader = Graph::Reader::LoadClassHierarchy->new;
my $graph = $reader->read_graph('Foo::Bar');
DESCRIPTION
Graph::Reader::LoadClassHierarchy is a class for loading a class hierarchy into a directed graph.
METHODS
new
my $reader = Graph::Reader::LoadClassHierarchy->new;
Constructor - generate a new reader instance. Doesn't take any arguments.
read_graph
my $graph = $reader->read_graph( $class_name );
Builds a graph with the class hierarchy of $class_name.
AUTHOR
Florian Ragwitz <rafl@debian.org>
BUGS
Please report any bugs or feature requests to bug-graph-reader-loadclasshierarchy at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Graph-Reader-LoadClassHierarchy. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Graph::Reader::LoadClassHierarchy
You can also look for information at:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
http://cpanratings.perl.org/d/Graph-Reader-LoadClassHierarchy
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Graph-Reader-LoadClassHierarchy
Search CPAN
COPYRIGHT & LICENSE
Copyright 2006 Florian Ragwitz, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.