line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package XML::Toolkit::MetaDescription::Trait; |
2
|
|
|
|
|
|
|
{ |
3
|
|
|
|
|
|
|
$XML::Toolkit::MetaDescription::Trait::VERSION = '0.15'; |
4
|
|
|
|
|
|
|
} |
5
|
2
|
|
|
2
|
|
1844
|
use Moose::Role; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
23
|
|
6
|
2
|
|
|
2
|
|
10889
|
use namespace::autoclean; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
25
|
|
7
|
|
|
|
|
|
|
|
8
|
2
|
|
|
2
|
|
1501
|
use XML::Toolkit::MetaDescription; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
304
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
with 'MooseX::MetaDescription::Meta::Trait'; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
has 'metadescription_classname' => ( |
13
|
|
|
|
|
|
|
is => 'rw', |
14
|
|
|
|
|
|
|
isa => 'Str', |
15
|
|
|
|
|
|
|
lazy => 1, |
16
|
|
|
|
|
|
|
default => 'XML::Toolkit::MetaDescription', |
17
|
|
|
|
|
|
|
); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
package Moose::Meta::Attribute::Custom::Trait::XML; |
20
|
|
|
|
|
|
|
{ |
21
|
|
|
|
|
|
|
$Moose::Meta::Attribute::Custom::Trait::XML::VERSION = '0.15'; |
22
|
|
|
|
|
|
|
} |
23
|
2
|
|
|
2
|
|
32190
|
sub register_implementation { 'XML::Toolkit::MetaDescription::Trait' } |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
1; |
26
|
|
|
|
|
|
|
__END__ |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 NAME |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
XML::Toolkit::MetaDescription::Trait - A class to ... |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 VERSION |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
version 0.15 |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 SYNOPSIS |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
use XML::Toolkit::MetaDescription::Trait; |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 DESCRIPTION |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
The XML::Toolkit::MetaDescription::Trait class implements ... |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 SUBROUTINES / METHODS |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 DEPENDENCIES |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Modules used, version dependencies, core yes/no |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Moose::Role |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
XML::Toolkit::MetaDescription |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 NOTES |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
... |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 BUGS AND LIMITATIONS |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
None known currently, please email the author if you find any. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head1 AUTHOR |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
Chris Prather (perigrin@domain.tld) |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head1 LICENCE |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
Copyright 2009 by Chris Prather. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
This software is free. It is licensed under the same terms as Perl itself. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=cut |