File Coverage

blib/lib/WSST/Schema/Return.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package WSST::Schema::Return;
2              
3 5     5   26 use strict;
  5         8  
  5         210  
4 5     5   26 use base qw(WSST::Schema::Node);
  5         9  
  5         2806  
5             __PACKAGE__->mk_accessors(qw(options page_total_entries page_current_page
6             page_entries_per_page));
7              
8 5         378 use constant BOOL_FIELDS => qw(multiple nullable page_total_entries
9 5     5   30 page_current_page page_entries_per_page);
  5         9  
10              
11             our $VERSION = '0.1.1';
12              
13             =head1 NAME
14              
15             WSST::Schema::Return - Schema::Return class of WSST
16              
17             =head1 DESCRIPTION
18              
19             This class represents the return element of schema.
20              
21             =head1 METHODS
22              
23             =head2 new
24              
25             Constructor.
26              
27             =head2 options
28              
29             Accessor for the options.
30              
31             =head2 page_total_entries
32              
33             Accessor for the page_total_entries.
34              
35             =head2 page_current_page
36              
37             Accessor for the page_current_page.
38              
39             =head2 page_entries_per_page
40              
41             Accessor for the page_entries_per_page.
42              
43             =head1 SEE ALSO
44              
45             http://code.google.com/p/wsst/
46              
47             =head1 AUTHORS
48              
49             Mitsuhisa Oshikawa
50             Yusuke Kawasaki
51              
52             =head1 COPYRIGHT AND LICENSE
53              
54             Copyright 2008 WSS Project Team
55              
56             =cut
57             1;