logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

XML::Handler::Sample - a trivial PerlSAX handler

Author

       Ken MacLeod, ken@bitsko.slc.ut.us

Description

       "XML::Handler::Sample" is a trivial PerlSAX handler that prints out the name of each event it receives.
       The source for "XML::Handler::Sample" lists all the currently known PerlSAX handler methods.

       "XML::Handler::Sample" is intended for Perl module authors who wish to look at example PerlSAX handler
       modules.  "XML::Handler::Sample" can be used as a template for writing your own PerlSAX handler modules.
       "XML::Handler::Sample" is in the Public Domain and can be used for any purpose without restriction.

Name

       XML::Handler::Sample - a trivial PerlSAX handler

See Also

perl(1), PerlSAX.pod(3)

perl v5.36.0                                       2022-12-13                          XML::Handler::Sample(3pm)

Synopsis

        use XML::Parser::PerlSAX;
        use XML::Handler::Sample;

        $my_handler = XML::Handler::Sample->new;

        XML::Parser::PerlSAX->new->parse(Source => { SystemId => 'REC-xml-19980210.xml' },
                                         Handler => $my_handler);

See Also