NAME
Aspect::Weaver - aspect weaving functionality
SYNOPSIS
$weaver = Aspect::Weaver->new;
print join(',', $weaver->get_sub_names); # all wrappable subs
$weaver->install(before => 'Employee::get_name', $wrapper_code);
$weaver->install(after => 'Employee::set_name', $wrapper_code);
DESCRIPTION
Used by Aspect::Advice to get all wrappable subs, and to install a before/after hook on a sub. Uses Aspect::Hook::LexWrap for the wrapping itself, and Devel::Symdump
for accessing symbol table info.
SEE ALSO
See the Aspect pod for a guide to the Aspect module.
BUGS AND LIMITATIONS
No bugs have been reported.
Please report any bugs or feature requests through the web interface at http://rt.cpan.org.
INSTALLATION
See perlmodinstall for information and options on installing Perl modules.
AVAILABILITY
The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>.
AUTHORS
Marcel Grünauer, <marcel@cpan.org>
Ran Eilam <eilara@cpan.org>
COPYRIGHT AND LICENSE
Copyright 2001 by Marcel Grünauer
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.