NAME
Egg::Component::Base - Base class for component.
SYNOPSIS
package MyApp::Component;
use base qw/
MyApp::Component::Hoge
MyApp::Component::Booo
Egg::Component::Base
/;
__PACKAGE__->_setup;
DESCRIPTION
It is a convenient base class to construct the component of the Class::C3 base.
It has the method of the terminal for the following hook calls assumed beforehand.
_import, _startup, _setup, _prepare, _dispatch, _action_start, _action_end, _finalize, _finalize_error, _output, _finish, _result
SEE ALSO
AUTHOR
Masatoshi Mizuno <lushe@cpan.org>
COPYRIGHT AND LICENSE
Copyright (C) 2008 Bee Flag, Corp. <http://egg.bomcity.com/>.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.