2 # BioPerl module for Bio::Event::EventGeneratorI
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Jason Stajich <jason@bioperl.org>
8 # Copyright Jason Stajich
10 # You may distribute this module under the same terms as perl itself
12 # POD documentation - main docs before the code
16 Bio::Event::EventGeneratorI - This interface describes the basic event
21 # Do not use this object directly
22 # This object has the basic methods for describing an event generator
26 This object describes the basic event generator system. It basically
27 allows one to attach one or many event handlers.
33 User feedback is an integral part of the evolution of this and other
34 Bioperl modules. Send your comments and suggestions preferably to
35 the Bioperl mailing list. Your participation is much appreciated.
37 bioperl-l@bioperl.org - General discussion
38 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
42 Please direct usage questions or support issues to the mailing list:
44 I<bioperl-l@bioperl.org>
46 rather than to the module maintainer directly. Many experienced and
47 reponsive experts will be able look at the problem and quickly
48 address it. Please include a thorough description of the problem
49 with code and data examples if at all possible.
53 Report bugs to the Bioperl bug tracking system to help us keep track
54 of the bugs and their resolution. Bug reports can be submitted via the
57 https://github.com/bioperl/bioperl-live/issues
59 =head1 AUTHOR - Jason Stajich
61 Email jason@bioperl.org
65 The rest of the documentation details each of the object methods.
66 Internal methods are usually preceded with a _
71 # Let the code begin...
74 package Bio
::Event
::EventGeneratorI
;
77 use base
qw(Bio::Root::RootI);
79 =head2 attach_EventHandler
81 Title : attach_EventHandler
82 Usage : $parser->attatch_EventHandler($handler)
83 Function: Adds an event handler to listen for events
85 Args : Bio::Event::EventHandlerI
89 sub attach_EventHandler
{
91 $self->throw_not_implemented();