line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package XML::Toolkit::MetaDescription; |
2
|
|
|
|
|
|
|
{ |
3
|
|
|
|
|
|
|
$XML::Toolkit::MetaDescription::VERSION = '0.15'; |
4
|
|
|
|
|
|
|
} |
5
|
2
|
|
|
2
|
|
12
|
use Moose; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
17
|
|
6
|
2
|
|
|
2
|
|
13100
|
use Moose::Util::TypeConstraints; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
20
|
|
7
|
2
|
|
|
2
|
|
4456
|
use namespace::autoclean; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
21
|
|
8
|
|
|
|
|
|
|
extends 'MooseX::MetaDescription::Description'; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has 'sort_order' => ( is => 'ro', isa => 'Int', default => sub { 0 } ); |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
__END__ |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
XML::Toolkit::MetaDescription - A class to ... |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 VERSION |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
version 0.15 |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 SYNOPSIS |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
use XML::Toolkit::MetaDescription; |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 DESCRIPTION |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
The XML::Toolkit::MetaDescription class implements ... |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 SUBROUTINES / METHODS |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DEPENDENCIES |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Modules used, version dependencies, core yes/no |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Moose |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Moose::Util::TypeConstraints |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 NOTES |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
... |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 BUGS AND LIMITATIONS |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
None known currently, please email the author if you find any. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 AUTHOR |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Chris Prather (perigrin@domain.tld) |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 LICENCE |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
Copyright 2009 by Chris Prather. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
This software is free. It is licensed under the same terms as Perl itself. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=cut |