maint: restructure to use Dist::Zilla
[bioperl-live.git] / lib / Bio / Event / EventGeneratorI.pm
blob71aef8225dbbc1177ddcf040a81bc2f49704648b
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
14 =head1 NAME
16 Bio::Event::EventGeneratorI - This interface describes the basic event
17 generator class.
19 =head1 SYNOPSIS
21 # Do not use this object directly
22 # This object has the basic methods for describing an event generator
24 =head1 DESCRIPTION
26 This object describes the basic event generator system. It basically
27 allows one to attach one or many event handlers.
29 =head1 FEEDBACK
31 =head2 Mailing Lists
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
40 =head2 Support
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.
51 =head2 Reporting Bugs
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
55 web:
57 https://github.com/bioperl/bioperl-live/issues
59 =head1 AUTHOR - Jason Stajich
61 Email jason@bioperl.org
63 =head1 APPENDIX
65 The rest of the documentation details each of the object methods.
66 Internal methods are usually preceded with a _
68 =cut
71 # Let the code begin...
74 package Bio::Event::EventGeneratorI;
75 use strict;
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
84 Returns : none
85 Args : Bio::Event::EventHandlerI
87 =cut
89 sub attach_EventHandler{
90 my ($self) = @_;
91 $self->throw_not_implemented();