bump version
[gitmo/Class-MOP.git] / lib / Class / MOP / Method / Generated.pm
1
2 package Class::MOP::Method::Generated;
3
4 use strict;
5 use warnings;
6
7 use Carp 'confess';
8
9 our $VERSION   = '0.73';
10 $VERSION = eval $VERSION;
11 our $AUTHORITY = 'cpan:STEVAN';
12
13 use base 'Class::MOP::Method';
14
15 sub new {
16     my $class   = shift;
17     my %options = @_;  
18         
19     ($options{package_name} && $options{name})
20         || confess "You must supply the package_name and name parameters $Class::MOP::Method::UPGRADE_ERROR_TEXT";     
21         
22     my $self = $class->_new(\%options);
23     
24     $self->initialize_body;
25     
26     return $self;
27 }
28
29 sub _new {
30     my $class = shift;
31     my $options = @_ == 1 ? $_[0] : {@_};
32
33     $options->{is_inline} ||= 0;
34     $options->{body} ||= undef;
35
36     bless $options, $class;
37 }
38
39 ## accessors
40
41 sub is_inline { (shift)->{'is_inline'} }
42
43 sub initialize_body {
44     confess "No body to initialize, " . __PACKAGE__ . " is an abstract base class";
45 }
46
47
48
49 1;
50
51 __END__
52
53 =pod
54
55 =head1 NAME 
56
57 Class::MOP::Method::Generated - Abstract base class for generated methods
58
59 =head1 DESCRIPTION
60
61 This is a C<Class::MOP::Method> subclass which is used interally 
62 by C<Class::MOP::Method::Accessor> and C<Class::MOP::Method::Constructor>.
63
64 =head1 METHODS
65
66 =over 4
67
68 =item B<new (%options)>
69
70 This creates the method based on the criteria in C<%options>, 
71 these options are:
72
73 =over 4
74
75 =item I<is_inline>
76
77 This is a boolean to indicate if the method should be generated
78 as a closure, or as a more optimized inline version.
79
80 =back
81
82 =item B<is_inline>
83
84 This returns the boolean which was passed into C<new>.
85
86 =item B<initialize_body>
87
88 This is an abstract method and will throw an exception if called.
89
90 =back
91
92 =head1 AUTHORS
93
94 Stevan Little E<lt>stevan@iinteractive.comE<gt>
95
96 =head1 COPYRIGHT AND LICENSE
97
98 Copyright 2006-2008 by Infinity Interactive, Inc.
99
100 L<http://www.iinteractive.com>
101
102 This library is free software; you can redistribute it and/or modify
103 it under the same terms as Perl itself. 
104
105 =cut
106