| XML-Filter-Essex documentation | Contained in the XML-Filter-Essex distribution. |
XML::Filter::Essex - SAX & DOM pull filtering
See XML::Handler::Essex for how to receive and react to events and XML::Generator::Essex for how to create and send events.
Any events not returned by get() are sent downstream by default.
Copyright 2002, R. Barrie Slaymaker, Jr., All Rights Reserved
You may use this module under the terms of the BSD, Artistic, oir GPL licenses, any version.
Barrie Slaymaker <barries@slaysys.com>
| XML-Filter-Essex documentation | Contained in the XML-Filter-Essex distribution. |
package XML::Filter::Essex; $VERSION = 0.01;
use XML::Handler::Essex (); use XML::Generator::Essex (); @ISA = qw( XML::Handler::Essex XML::Generator::Essex ); use strict; sub _skip_event { my $self = shift; $self->put( @_ ); }
1;