NAME

XML::Toolset::Document - An object which represents an XML document which knows about an XML::Toolset implementation which can perform operations on it.

SYNOPSIS

  use XML::Toolset::Document;
  my $xml = <<EOF;
  <hello world="!">
    How are you?
    <how>
      <ya doing="?" />
    </how>
  </hello>
  EOF
  my $doc = XML::Toolset::Document->new($xml);
  
  my $final_xml = $doc->to_string();

DESCRIPTION

An XML::Toolset::Document object represents an XML document which knows about an XML::Toolset implementation which can perform operations on it.

Sorry. There's no more documentation yet except the code.

AUTHOR

Stephen Adkins <spadkins@gmail.com>

COPYRIGHT

(c) 2007 Stephen Adkins, for the purpose of making it Free. This is Free Software. It is licensed under the same terms as Perl itself.