Bio::Event
EventHandlerI
Summary
Bio::Event::EventHandlerI - An Event Handler Interface
Package variables
No package variables defined.
Included modules
Inherit
Synopsis
# do not use this module directly
# See Bio::SearchIO::SearchResultEventHandler for an example of
# implementation.
Description
This interface describes the basic methods required for a
EventHandlers. These are essentially SAX methods.
Methods
Methods description
Title : will_handle
Usage : if( $handler->will_handle($event_type) ) { ... }
Function: Tests if this event builder knows how to process a specific event
Returns : boolean
Args : event type name |
Title : start_document
Usage : $eventgenerator->start_document();
Function: Handle a start document event
Returns : none
Args : none |
Title : end_document
Usage : $eventgenerator->end_document();
Function: Handle an end document event
Returns : none
Args : none |
Title : start_element
Usage : $eventgenerator->start_element
Function: Handles a start element event
Returns : none
Args : hashref with at least 2 keys 'Data' and 'Name' |
Title : start_element
Usage : $eventgenerator->end_element
Function: Handles an end element event
Returns : none
Args : hashref with at least 2 keys 'Data' and 'Name' |
Title : in_element
Usage : if( $eventgenerator->in_element($element) ) {}
Function: Test if we are in a particular element
This is different than 'within' because 'in' tests only
if one has reached a specific element.
Returns : boolean
Args : string element name |
Title : within_element
Usage : if( $eventgenerator->within_element($element) ) {}
Function: Test if we are within a particular element
This is different than 'in' because within can be tested
for a whole block.
Returns : boolean
Args : string element name |
Title : characters
Usage : $eventgenerator->characters($str)
Function: Send a character events
Returns : none
Args : string |
Methods code
sub will_handle
{ my ($self,$type) = @_;
$self->throw_not_implemented(); } |
sub start_document
{ my ($self,@args) = @_;
$self->throw_not_implemented; } |
sub end_document
{ my ($self,@args) = @_;
$self->throw_not_implemented; } |
sub start_element
{ my ($self,@args) = @_;
$self->throw_not_implemented; } |
sub end_element
{ my ($self,@args) = @_;
$self->throw_not_implemented; } |
sub in_element
{ my ($self,@args) = @_;
$self->throw_not_implemented; } |
sub within_element
{ my ($self,@args) = @_;
$self->throw_not_implemented; } |
sub characters
{ my ($self,@args) = @_;
$self->throw_not_implemented; } |
General documentation
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to
the Bioperl mailing list. Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://bioperl.org/MailList.shtml - About the mailing lists
Report bugs to the Bioperl bug tracking system to help us keep track
of the bugs and their resolution. Bug reports can be submitted via
email or the web:
bioperl-bugs@bioperl.org
http://bioperl.org/bioperl-bugs/
| AUTHOR - Jason Stajich | Top |
Additional contributors names and emails here
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _