Help for this page

Select Code to Download


  1. or download this
    sub characters {
        my $self = shift;
    ...
            my $method;
            my $callbacks;
    ...
    
  2. or download this
    sub start_element {
        my ($self, $element) = @_;
    ...
    
        $self->SUPER::start_element($element);
    }
    
  3. or download this
    sub characters {
        my ($self, $chars) = @_;
    ...
        $self->SUPER::characters({Data => $chars->{Data}});
        }
    }
    
  4. or download this
      my $c = {Data => substr $chars, $from, $upto - $from};
      unless ($upto - $from <= 0) { print "\n=> calling SUPER::characters 
    +with " . Dumper($c) . "\n"; }
      $self->SUPER::characters($c) unless ($upto - $from <= 0);