95b549a7536de25d5c95b012e5ef1657d5b25ca1
[gitmo/Moose.git] / lib / Moose / Meta / Attribute / Native / Trait / Code.pm
1 package Moose::Meta::Attribute::Native::Trait::Code;
2 use Moose::Role;
3 use Moose::Meta::Attribute::Native::MethodProvider::Code;
4
5 our $VERSION   = '0.87';
6 $VERSION = eval $VERSION;
7 our $AUTHORITY = 'cpan:STEVAN';
8
9 with 'Moose::Meta::Attribute::Native::Trait';
10
11 has method_provider => (
12     is        => 'ro',
13     isa       => 'ClassName',
14     predicate => 'has_method_provider',
15     default   => 'Moose::Meta::Attribute::Native::MethodProvider::Code',
16 );
17
18 sub _default_is { 'ro' }
19 sub _helper_type { 'CodeRef' }
20
21 no Moose::Role;
22
23 1;
24
25 =pod
26
27 =head1 NAME
28
29 Moose::Meta::Attribute::Native::Trait::Code
30
31 =head1 SYNOPSIS
32
33   package Foo;
34   use Moose;
35
36   has 'callback' => (
37       traits    => ['Code'],
38       is        => 'ro',
39       isa       => 'CodeRef',
40       default   => sub { sub { print "called" } },
41       handles   => {
42           call => 'execute',
43       },
44   );
45
46   my $foo = Foo->new;
47   $foo->call; # prints "called"
48
49
50 =head1 DESCRIPTION
51
52 This provides operations on coderef attributes.
53
54 =head1 PROVIDED METHODS
55
56 =over 4
57
58 =item B<execute(@args)>
59
60 Calls the coderef with the given args.
61
62 =back
63
64 =head1 BUGS
65
66 All complex software has bugs lurking in it, and this module is no
67 exception. If you find a bug please either email me, or add the bug
68 to cpan-RT.
69
70 =head1 AUTHOR
71
72   Florian Ragwitz <rafl@debian.org>
73
74 =head1 COPYRIGHT AND LICENSE
75
76 Copyright 2007-2009 by Infinity Interactive, Inc.
77
78 L<http://www.iinteractive.com>
79
80 This library is free software; you can redistribute it and/or modify
81 it under the same terms as Perl itself.
82
83 =cut