
POE::XUL::TextNode - XUL TextNode

use POE::XUL::Node;
use POE::XUL::TextNode;
my $node = POE::XUL::TextNode->new( "Just some text" );
my $desc = Description( "This is my description node" );
print $desc->firstChild->nodeValue;

POE::XUL::CDATA instances is are objects for holding and manipulating plain text. This permits mixed-mode nodes, that is nodes that contain both text and other nodes.

my $textnode = POE::XUL::TextNode->new( "Some Text" );
my $text = $textnode->nodeValue;
Synonym for "nodeValue".
my $escaped_text = $textnode->as_xml;
Returns an empty array.
Does nothing.

Philip Gwyn <gwyn-at-cpan.org>

Based on XUL::Node by Ran Eilam.

Copyright 2007-2008 by Philip Gwyn. All rights reserved;
Copyright 2003-2004 Ran Eilam. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

perl(1), POE::XUL, POE::XUL::Node, POE::XUL::CDATA.