uploadin
[gitmo/Moose.git] / lib / Moose / Object.pm
1
2 package Moose::Object;
3
4 use strict;
5 use warnings;
6
7 use metaclass 'Moose::Meta::Class' => (
8         ':attribute_metaclass' => 'Moose::Meta::Attribute'
9 );
10
11 our $VERSION = '0.01';
12
13 sub new {
14     my $class  = shift;
15         my %params = @_;
16         my $self = $class->meta->new_object(%params);
17         $self->BUILDALL(%params);
18         return $self;
19 }
20
21 sub BUILDALL {
22         my ($self, %params) = @_;
23         foreach my $method ($self->meta->find_all_methods_by_name('BUILD')) {
24                 $method->{method}->($self, %params);
25         }
26 }
27
28 sub DEMOLISHALL {
29         my $self = shift;
30         foreach my $method ($self->meta->find_all_methods_by_name('DEMOLISH')) {
31                 $method->{method}->($self);
32         }       
33 }
34
35 sub DESTROY { goto &DEMOLISHALL }
36
37 1;
38
39 __END__
40
41 =pod
42
43 =head1 NAME
44
45 Moose::Object - 
46
47 =head1 SYNOPSIS
48
49 =head1 DESCRIPTION
50
51 =head1 METHODS
52
53 =over 4
54
55 =item B<meta>
56
57 =item B<new>
58
59 =item B<BUILDALL>
60
61 =item B<DEMOLISHALL>
62
63 =back
64
65 =head1 BUGS
66
67 All complex software has bugs lurking in it, and this module is no 
68 exception. If you find a bug please either email me, or add the bug
69 to cpan-RT.
70
71 =head1 CODE COVERAGE
72
73 I use L<Devel::Cover> to test the code coverage of my tests, below is the 
74 L<Devel::Cover> report on this module's test suite.
75
76 =head1 ACKNOWLEDGEMENTS
77
78 =head1 AUTHOR
79
80 Stevan Little E<lt>stevan@iinteractive.comE<gt>
81
82 =head1 COPYRIGHT AND LICENSE
83
84 Copyright 2006 by Infinity Interactive, Inc.
85
86 L<http://www.iinteractive.com>
87
88 This library is free software; you can redistribute it and/or modify
89 it under the same terms as Perl itself. 
90
91 =cut