some refactoring of handles
[gitmo/Moose.git] / lib / Moose / Meta / Instance.pm
1
2 package Moose::Meta::Instance;
3
4 use strict;
5 use warnings;
6
7 our $VERSION   = '0.55';
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use base "Class::MOP::Instance";
11
12 1;
13
14 __END__
15
16 =pod
17
18 =head1 NAME
19
20 Moose::Meta::Instance - The Moose Instance metaclass
21
22 =head1 SYNOPSIS
23
24     # nothing to see here
25
26 =head1 DESCRIPTION
27
28 This class provides the low level data storage abstractions for attributes.
29
30 Using this API generally violates attribute encapsulation and is not
31 reccomended, instead look at L<Class::MOP::Attribute/get_value>,
32 L<Class::MOP::Attribute/set_value>, etc, as well as L<Moose::Meta::Attribute>
33 for the recommended way to fiddle with attribute values in a generic way,
34 independent of how/whether accessors have been defined. Accessors can be found
35 using L<Class::MOP::Class/get_attribute>.
36
37 See the L<Class::MOP::Instance> docs for details on the instance protocol.
38
39 =head1 BUGS
40
41 All complex software has bugs lurking in it, and this module is no 
42 exception. If you find a bug please either email me, or add the bug
43 to cpan-RT.
44
45 =head1 AUTHOR
46
47 Stevan Little E<lt>stevan@iinteractive.comE<gt>
48
49 Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
50
51 =head1 COPYRIGHT AND LICENSE
52
53 Copyright 2006-2008 by Infinity Interactive, Inc.
54
55 L<http://www.iinteractive.com>
56
57 This library is free software; you can redistribute it and/or modify
58 it under the same terms as Perl itself. 
59
60 =cut