line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package MooseX::Role::Parameterized::Parameters; |
2
|
|
|
|
|
|
|
# ABSTRACT: base class for parameters |
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
our $VERSION = '1.10'; |
5
|
|
|
|
|
|
|
|
6
|
27
|
|
|
27
|
|
16469
|
use Moose; |
|
27
|
|
|
|
|
293692
|
|
|
27
|
|
|
|
|
120
|
|
7
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
8
|
27
|
|
|
27
|
|
107671
|
no Moose; |
|
27
|
|
|
|
|
38
|
|
|
27
|
|
|
|
|
91
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
__END__ |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=pod |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=encoding UTF-8 |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
MooseX::Role::Parameterized::Parameters - base class for parameters |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 VERSION |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
version 1.10 |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 DESCRIPTION |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
This is the base class for parameter objects. Currently empty, but I reserve |
29
|
|
|
|
|
|
|
the right to add things here. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Each parameterizable role gets their own anonymous subclass of this; |
32
|
|
|
|
|
|
|
L<MooseX::Role::Parameterized/parameter> actually operates on these anonymous |
33
|
|
|
|
|
|
|
subclasses. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Each parameterized role gets their own instance of the anonymous subclass |
36
|
|
|
|
|
|
|
(owned by the parameterizable role). |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 SUPPORT |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Role-Parameterized> |
41
|
|
|
|
|
|
|
(or L<bug-MooseX-Role-Parameterized@rt.cpan.org|mailto:bug-MooseX-Role-Parameterized@rt.cpan.org>). |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
There is also a mailing list available for users of this distribution, at |
44
|
|
|
|
|
|
|
L<http://lists.perl.org/list/moose.html>. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
There is also an irc channel available for users of this distribution, at |
47
|
|
|
|
|
|
|
L<C<#moose> on C<irc.perl.org>|irc://irc.perl.org/#moose>. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head1 AUTHOR |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Shawn M Moore <code@sartak.org> |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
This software is copyright (c) 2008 by Shawn M Moore. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
58
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=cut |