some more docs for Class::MOP and the attribute functions for Class::MOP::Class
[gitmo/Class-MOP.git] / lib / Class / MOP / Method.pm
CommitLineData
8b978dd5 1
2package Class::MOP::Method;
3
4use strict;
5use warnings;
6
7our $VERSION = '0.01';
8
91;
10
11__END__
12
13=pod
14
15=head1 NAME
16
17Class::MOP::Method - Method Meta Object
18
19=head1 SYNOPSIS
20
21=head1 DESCRIPTION
22
552e3d24 23The Method Protocol is very small, since methods in Perl 5 are just
24subroutines within the particular package. Basically all we do is to
25bless the subroutine and provide some very simple introspection
26methods for it.
27
8b978dd5 28=head1 AUTHOR
29
30Stevan Little E<gt>stevan@iinteractive.comE<lt>
31
32=head1 COPYRIGHT AND LICENSE
33
34Copyright 2006 by Infinity Interactive, Inc.
35
36L<http://www.iinteractive.com>
37
38This library is free software; you can redistribute it and/or modify
39it under the same terms as Perl itself.
40
41=cut