File Coverage

blib/lib/WebService/ClinicalTrialsdotGov/Study.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 WebService::ClinicalTrialsdotGov::Study;
2              
3 1     1   1063 use strict;
  1         1  
  1         39  
4 1     1   6 use warnings;
  1         2  
  1         34  
5              
6 1     1   5 use Carp qw( cluck );
  1         2  
  1         69  
7 1     1   5 use base qw( Class::Accessor );
  1         3  
  1         995  
8              
9             WebService::ClinicalTrialsdotGov::Study->mk_accessors(qw(
10            
11             oversight_info
12             detailed_description
13             study_type
14             primary_completion_date
15             primary_outcome
16             intervention
17             intervention_browse
18             has_expanded_access
19             arm_group
20             number_of_arms
21             overall_official
22             brief_title
23             study_design
24             location
25             id_info
26             firstreceived_date
27             overall_contact
28             overall_status
29             verification_date
30             source
31             keyword
32             sponsors
33             official_title
34             enrollment
35             condition_browse
36             brief_summary
37             location_countries
38             is_section_801
39             secondary_outcome
40             responsible_party
41             eligibility
42             phase
43             lastchanged_date
44             start_date
45             is_fda_regulated
46             required_header
47             overall_contact_backup
48             condition
49            
50             ));
51              
52             =head1 NAME
53              
54             WebService::ClinicalTrialsdotGov::Study - Wrapper around the clinicaltrials.gov API
55              
56             =head1 ACCESSORS
57              
58             oversight_info
59             detailed_description
60             study_type
61             primary_completion_date
62             primary_outcome
63             intervention
64             intervention_browse
65             has_expanded_access
66             arm_group
67             number_of_arms
68             overall_official
69             brief_title
70             study_design
71             location
72             id_info
73             firstreceived_date
74             overall_contact
75             overall_status
76             verification_date
77             source
78             keyword
79             sponsors
80             official_title
81             enrollment
82             condition_browse
83             brief_summary
84             location_countries
85             is_section_801
86             secondary_outcome
87             responsible_party
88             eligibility
89             phase
90             lastchanged_date
91             start_date
92             is_fda_regulated
93             required_header
94             overall_contact_backup
95             condition
96              
97             =head1 AUTHOR
98              
99             Spiros Denaxas, C<< >>
100              
101             =head1 BUGS
102              
103             Please report any bugs or feature requests to C, or through
104             the web interface at L. I will be notified, and then you'll
105             automatically be notified of progress on your bug as I make changes.
106              
107              
108             =head1 SUPPORT
109              
110             You can find documentation for this module with the perldoc command.
111              
112             perldoc WebService::ClinicalTrialsdotGov
113              
114             You can also look for information at:
115              
116             =over 4
117              
118             =item * RT: CPAN's request tracker
119              
120             L
121              
122             =item * AnnoCPAN: Annotated CPAN documentation
123              
124             L
125              
126             =item * CPAN Ratings
127              
128             L
129              
130             =item * Search CPAN
131              
132             L
133              
134             =back
135              
136             =head1 COPYRIGHT & LICENSE
137              
138             Copyright 2010 Spiros Denaxas, all rights reserved.
139              
140             This program is free software; you can redistribute it and/or modify it
141             under the same terms as Perl itself.
142              
143              
144             =cut
145              
146             1;