File Coverage

blib/lib/XML/Filter/Essex.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package XML::Filter::Essex;
2              
3             $VERSION = 0.01;
4              
5             =head1 NAME
6              
7             XML::Filter::Essex - SAX & DOM pull filtering
8              
9             =head1 SYNOPSIS
10              
11             =head1 DESCRIPTION
12              
13             See L for how to receive and
14             react to events and L for
15             how to create and send events.
16              
17             Any events not returned by get() are sent downstream by default.
18              
19             =head2 Methods
20              
21             =over
22              
23             =cut
24              
25 4     4   11055 use XML::Handler::Essex ();
  0            
  0            
26             use XML::Generator::Essex ();
27              
28             @ISA = qw( XML::Handler::Essex XML::Generator::Essex );
29              
30             use strict;
31              
32             sub _skip_event {
33             my $self = shift;
34             $self->put( @_ );
35             }
36              
37             =back
38              
39             =head1 LIMITATIONS
40              
41             =head1 COPYRIGHT
42              
43             Copyright 2002, R. Barrie Slaymaker, Jr., All Rights Reserved
44              
45             =head1 LICENSE
46              
47             You may use this module under the terms of the BSD, Artistic, oir GPL licenses,
48             any version.
49              
50             =head1 AUTHOR
51              
52             Barrie Slaymaker
53              
54             =cut
55              
56             1;