File Coverage

blib/lib/Rose/HTMLx/Form/Field/Serial.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 Rose::HTMLx::Form::Field::Serial;
2              
3 1     1   24310 use warnings;
  1         3  
  1         35  
4 1     1   6 use strict;
  1         2  
  1         42  
5 1     1   5 use base qw( Rose::HTML::Form::Field::Hidden );
  1         6  
  1         1071  
6              
7             our $VERSION = '0.002';
8              
9             =head1 NAME
10              
11             Rose::HTMLx::Form::Field::Serial - represent auto-increment columns in a form
12              
13             =head1 SYNOPSIS
14              
15             # see Rose::HTML::Form::Field::Hidden
16              
17             =head1 DESCRIPTION
18              
19             Rose::HTMLx::Form::Field::Serial is a subclass of Rose::HTML::Form::Field::Hidden.
20             It exists simply to isolate a particular kind of form field that should
21             not be updated via form but may need to be passed as a param or viewed
22             in a (x)html serialized format. The namespace is reserved in the event that future
23             functionality may be added, but mostly to uniquely identify this field type
24             for use with Rose::DBx::Garden.
25            
26             =head1 METHODS
27              
28             Currently no methods are overridden.
29              
30             =cut
31              
32             1;
33              
34             __END__