Bio-MAGE-Utils
view release on metacpan or search on metacpan
MAGE/XML/Handler/ObjectHandlerI.pm view on Meta::CPAN
package Bio::MAGE::XML::Handler::ObjectHandlerI;
use strict;
use Bio::MAGE::Base;
use base qw(Bio::MAGE::Base);
our $VERSION = '0.99';
sub new {
my $pack = shift;
my $self = bless {}, $pack;
$self->throw_not_implemented("new not defined for ".ref(caller()));
}
sub handle {
my $self = shift;
$self->throw_not_implemented("handle not defined for ".ref(caller()));
}
1;
__END__
=head1 NAME
Bio::MAGE::XML::Handler::ObjectHandlerI - Abstract class for processing
Bio::MAGE objects.
( run in 0.725 second using v1.01-cache-2.11-cpan-a9ef4e587e4 )