XML::Handler::BuildDOM - PerlSAX handler that creates XML::DOM document structures |
XML::Handler::BuildDOM - PerlSAX handler that creates XML::DOM document structures
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");
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.
The XML::Handler::BuildDOM constructor supports the following options:
XML::Handler::BuildDOM - PerlSAX handler that creates XML::DOM document structures |