The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Protocol::XMPP::TextElement;
BEGIN {
  $Protocol::XMPP::TextElement::VERSION = '0.005';
}
use strict;
use warnings FATAL => 'all';
use parent qw(Protocol::XMPP::ElementBase);

=head1 NAME

Protocol::XMPP::TextElement - handle a text element

=head1 VERSION

version 0.005

=head1 SYNOPSIS

=head1 DESCRIPTION

=head1 METHODS

=cut

sub new {
	my $class = shift;
	my $self = $class->SUPER::new(@_);
	$self->{text_data} = '';
	$self
}

=head2 characters

=cut

sub characters {
	my $self = shift;
	my $v = shift;
	$self->{text_data} .= $v;
	$self;
}

=head2 trim

Remove all leading and trailing whitespace.

=cut

sub trim { $_[0] =~ s/(?:^\s*)|(?:\s*$)//g; $_[0] }

=head2 end_element

=cut

sub end_element {
	my $self = shift;
	my $data = trim($self->{text_data});
	$self->on_text_complete($data);
	$self;
}

1;

__END__

=head1 AUTHOR

Tom Molesworth <cpan@entitymodel.com>

=head1 LICENSE

Copyright Tom Molesworth 2010-2011. Licensed under the same terms as Perl itself.