* sync with trunk
[bioperl-live.git] / Bio / Factory / ApplicationFactoryI.pm
blob8ae3424e67015336cfd207f9d44a06bad0688563
1 # $Id$
3 # BioPerl module for Bio::Factory::ApplicationFactoryI
5 # Cared for by Heikki Lehvaslaiho <heikki-at-bioperl-dot-org>
7 # Copyright Heikki Lehvaslaiho
9 # You may distribute this module under the same terms as perl itself
11 # POD documentation - main docs before the code
13 =head1 NAME
15 Bio::Factory::ApplicationFactoryI - Interface class for Application Factories
17 =head1 SYNOPSIS
19 You wont be using this as an object, but using a derived class.
21 =head1 DESCRIPTION
23 Holds common Application Factory attributes in place.
25 =head1 FEEDBACK
27 =head2 Mailing Lists
29 User feedback is an integral part of the evolution of this and other
30 Bioperl modules. Send your comments and suggestions preferably to the
31 Bioperl mailing lists Your participation is much appreciated.
33 bioperl-l@bioperl.org - General discussion
34 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
36 =head2 Reporting Bugs
38 report bugs to the Bioperl bug tracking system to help us keep track
39 the bugs and their resolution. Bug reports can be submitted via the
40 web:
42 http://bugzilla.open-bio.org/
44 =head1 AUTHOR - Heikki Lehvaslaiho
46 Email: heikki-at-bioperl-dot-org
48 =head1 APPENDIX
50 The rest of the documentation details each of the object
51 methods. Internal methods are usually preceded with a _
53 =cut
55 # Let the code begin...
57 package Bio::Factory::ApplicationFactoryI;
58 use strict;
60 use base qw(Bio::Root::RootI);
62 =head2 version
64 Title : version
65 Usage : exit if $prog->version() < 1.8
66 Function: Determine the version number of the program
67 Example :
68 Returns : float or undef
69 Args : none
71 =cut
73 sub version {
74 shift->throw_not_implemented();