| XML-Toolkit documentation | view source | Contained in the XML-Toolkit distribution. |
XML::Filter::Moose - A Moose-ified base class for XML::SAX
This documentation refers to version 0.01.
package MyFilter;
use Moose
extends qw(XML::SAX::Base);
augment start_element => start {
my ($self, $el) = @_;
$el->{Data} = [do something];
};
The XML::Filter::Moose class implements ...
Returns the root element, or the first element in the stack
Insert description of subroutine here...
Return true if we are currently working on the root element.
Returns the parent of the current element.
Fires at the start of the document.
Fires at the start of an element.
Fires at the start of a text node.
Fires at the end of an element.
Fires at the end of a document.
Please report any bugs or feature requests to
bug-xml-toolkit@rt.cpan.org, or through the web interface at
http://rt.cpan.org.
Chris Prather (chris@prather.org)
Based upon XML::SAX::Base
Kip Hampton (khampton@totalcinema.com)
Robin Berjon (robin@knowscape.com)
Matt Sergeant (matt@sergeant.org)
Copyright 2009 by Chris Prather.
This software is free. It is licensed under the same terms as Perl itself.
| XML-Toolkit documentation | view source | Contained in the XML-Toolkit distribution. |