| Bio-MAGE-Utils documentation | Contained in the Bio-MAGE-Utils distribution. |
Bio::MAGE::XML::Handler::ObjectHandlerI - Abstract class for processing Bio::MAGE objects.
my $objhandler; #get an Bio::MAGE::XML::ObjectHandlerI somehow my $handler; #get an Bio::MAGE::XML::Handler somehow my $reader; #get a Bio::MAGE::XML::Reader somehow $handler->objecthandler($objhandler); $reader->handler($handler)
Copyright (c) 2002 Allen Day, <allenday@ucla.edu>
| Bio-MAGE-Utils documentation | Contained in the Bio-MAGE-Utils distribution. |
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__