File Coverage

blib/lib/XML/XForms/Generator.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package XML::XForms::Generator;
2             ######################################################################
3             ## ##
4             ## Package: Generator.pm ##
5             ## Author: D. Hageman ##
6             ## ##
7             ## Description: ##
8             ## ##
9             ## Perl object to assist in the generation of XML compliant with ##
10             ## the W3's XForms specification. ##
11             ## ##
12             ######################################################################
13              
14             ##==================================================================##
15             ## Libraries and Variables ##
16             ##==================================================================##
17              
18             require 5.006;
19             require Exporter::Cluster;
20              
21 5     5   156712 use strict;
  5         12  
  5         306  
22 5     5   29 use warnings;
  5         10  
  5         683  
23              
24             @XML::XForms::Generator::ISA = qw( Exporter::Cluster );
25              
26             %XML::XForms::Generator::EXPORT_CLUSTER = (
27             'XML::XForms::Generator::Action' => [],
28             'XML::XForms::Generator::Control' => [],
29             'XML::XForms::Generator::Extension' => [],
30             'XML::XForms::Generator::Model' => [],
31             'XML::XForms::Generator::UserInterface' => [],
32             );
33              
34             our $VERSION = "0.70";
35              
36             ##==================================================================##
37             ## Constructor(s)/Deconstructor(s) ##
38             ##==================================================================##
39              
40             ##
41             ## None.
42             ##
43              
44             ##==================================================================##
45             ## Method(s) ##
46             ##==================================================================##
47              
48             ##
49             ## None.
50             ##
51              
52             ##==================================================================##
53             ## End of Code ##
54             ##==================================================================##
55             1;
56              
57             ##==================================================================##
58             ## Plain Old Documentation (POD) ##
59             ##==================================================================##
60              
61             __END__