File Coverage

blib/lib/Medical/ICD10/Term.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Medical::ICD10::Term;
2              
3 2     2   931 use strict;
  2         3  
  2         78  
4 2     2   12 use warnings;
  2         3  
  2         69  
5              
6 2     2   1201 use Data::Dumper;
  2         8237  
  2         148  
7 2     2   17 use base 'Class::Accessor';
  2         4  
  2         2194  
8              
9             Medical::ICD10::Term->mk_accessors( qw( term description) );
10              
11             =head1 NAME
12              
13             Medical::ICD10::Term - ICD10 term object
14              
15             =head1 METHODS
16              
17             =head2 description
18              
19             Returns a scalar containing the terms description.
20              
21             my $desc = $O->description;
22              
23             =cut
24              
25             =head2 term
26              
27             Returns a scalar containing the terms name.
28              
29             my $term = $O->term;
30              
31             =cut
32              
33             =head1 AUTHOR
34              
35             Spiros Denaxas, C<< >>
36              
37             =head1 BUGS
38              
39             Please report any bugs or feature requests to C, or through
40             the web interface at L. I will be notified, and then you'll
41             automatically be notified of progress on your bug as I make changes.
42              
43             =head1 SOURCE CODE
44              
45             The source code can be found on github L
46              
47             =head1 SUPPORT
48              
49             You can find documentation for this module with the perldoc command.
50              
51             perldoc Medical::ICD10
52              
53              
54             You can also look for information at:
55              
56             =over 4
57              
58             =item * RT: CPAN's request tracker
59              
60             L
61              
62             =item * AnnoCPAN: Annotated CPAN documentation
63              
64             L
65              
66             =item * CPAN Ratings
67              
68             L
69              
70             =item * Search CPAN
71              
72             L
73              
74             =back
75              
76             =head1 LICENSE AND COPYRIGHT
77              
78             Copyright 2011 Spiros Denaxas.
79              
80             This program is free software; you can redistribute it and/or modify it
81             under the terms of either: the GNU General Public License as published
82             by the Free Software Foundation; or the Artistic License.
83              
84             See http://dev.perl.org/licenses/ for more information.
85              
86              
87             =cut
88              
89              
90             1;