NAME
XML::Rabbit::Role::Document - XML Document base class
VERSION
version 0.0.2
SYNOPSIS
package MyXMLSyntax;
use Moose;
with 'XML::Rabbit::Role::Document';
sub root_node {
return shift->_document->documentElement();
}
DESCRIPTION
This module provides the base document attribute used to hold the parsed XML content.
See XML::Rabbit for a more complete example.
ATTRIBUTES
file
A string representing the path to the file that contains the XML document data. Required.
_document
An instance of a XML::LibXML::Document class. Read Only.
METHODS
dump_document_xml
Dumps the XML of the entire document as a native perl string.
AUTHOR
Robin Smidsrød <robin@smidsrod.no>
COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Robin Smidsrød.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.