XML::Handler::BuildDOM - PerlSAX handler that creates XML::DOM document structures


NAME

XML::Handler::BuildDOM - PerlSAX handler that creates XML::DOM document structures


SYNOPSIS

 use XML::Handler::BuildDOM;
 use XML::Parser::PerlSAX;
 my $handler = new XML::Handler::BuildDOM (KeepCDATA => 1);
 my $parser = new XML::Parser::PerlSAX (Handler => $handler);
 my $doc = $parser->parsefile ("file.xml");


DESCRIPTION

XML::Handler::BuildDOM creates the XML::DOM manpage document structures (i.e. the XML::DOM::Document manpage) from PerlSAX events.

This class used to be called the XML::PerlSAX::DOM manpage prior to libxml-enno 1.0.1.

CONSTRUCTOR OPTIONS

The XML::Handler::BuildDOM constructor supports the following options:

 XML::Handler::BuildDOM - PerlSAX handler that creates XML::DOM document structures