-
-
30 Mar 2007 15:45:50 UTC
- Distribution: Class-Factory-Util
- Module version: 1.7
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (2)
- Testers (17871 / 14 / 2)
- Kwalitee
Bus factor: 1- 90.57% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (11.66KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
++ed by:1 non-PAUSE user- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
Take me over?
The maintainer of this distribution is looking for someone to take over! If you're interested then please contact them via email.NAME
Class::Factory::Util - Provide utility methods for factory classes
SYNOPSIS
package My::Class; use Class::Factory::Util; My::Class->subclasses;
DESCRIPTION
This module exports a method that is useful for factory classes.
USAGE
When this module is loaded, it creates a method in its caller named
subclasses()
. This method returns a list of the available subclasses for the package. It does this by looking in@INC
as well as the directory containing the caller, and finding any modules in the immediate subdirectories of the calling module.So if you have the modules "Foo::Base", "Foo::Base::Bar", and "Foo::Base::Baz", then the return value of
Foo::Base->subclasses()
would be "Bar" and "Baz".SUPPORT
Please submit bugs to the CPAN RT system at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=class-factory-util or via email at bug-class-factory-util@rt.cpan.org.
AUTHOR
Dave Rolsky, <autarch@urth.org>.
Removed from Alzabo and packaged by Terrence Brannon, <tbone@cpan.org>.
COPYRIGHT
Copyright (c) 2003-2007 David Rolsky. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
Module Install Instructions
To install Class::Factory::Util, copy and paste the appropriate command in to your terminal.
cpanm Class::Factory::Util
perl -MCPAN -e shell install Class::Factory::Util
For more information on module installation, please visit the detailed CPAN module installation guide.