line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package PDF::TableX::Drawable; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
3724
|
use Moose::Role; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
requires 'draw_content'; |
6
|
|
|
|
|
|
|
requires 'draw_borders'; |
7
|
|
|
|
|
|
|
requires 'draw_background'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
PDF::TableX::Drawable |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 VERSION |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
TODO |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 AUTHOR |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Grzegorz Papkala, C<< <grzegorzpapkala at gmail.com> >> |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 BUGS |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Please report any bugs or feature requests at: L<https://github.com/grzegorzpapkala/PDF-TableX/issues> |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 SUPPORT |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
PDF::TableX is hosted on GitHub L<https://github.com/grzegorzpapkala/PDF-TableX> |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 ACKNOWLEDGEMENTS |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Copyright 2013 Grzegorz Papkala, all rights reserved. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
38
|
|
|
|
|
|
|
under the same terms as Perl itself. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |