| XML-Elemental documentation | Contained in the XML-Elemental distribution. |
| XML-Elemental documentation | Contained in the XML-Elemental distribution. |
package XML::Elemental::Characters; use strict; use base qw( XML::Elemental::Node ); sub data { $_[0]->{data} = $_[1] if @_ > 1; return $_[0]->{data}; } sub parent { $_[0]->{parent} = $_[1] if @_ > 1; return $_[0]->{parent}; } 1; __END__