The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

XML::Xalan::ParsedSource - Parsed document class reusable for transformation

SYNOPSIS

  use XML::Xalan;
  ...
  
  my $tr = new XML::Xalan::Transformer;
  my $parsed = $tr->parse_file("foo.xml");

  # get a DOM tree representation
  my $dom = $tr->get_document();

DESCRIPTION

Base class designed to allow an XML::Xalan::Tranfomer object to reuse a parsed document.

METHODS

$parsed->get_document()

Returns an XML::Xalan::DOM::Document object.

AUTHOR

Edwin Pratomo, edpratomo@cpan.org

SEE ALSO

XML::Xalan::Transformer(3), XML::Xalan::DOM(3).