Egg::Component::Base - Base class for component.


Egg-Release documentation Contained in the Egg-Release distribution.

Index


Code Index:

NAME

Top

Egg::Component::Base - Base class for component.

SYNOPSIS

Top

  package MyApp::Component;
  use base qw/
    MyApp::Component::Hoge
    MyApp::Component::Booo
    Egg::Component::Base
    /;

  __PACKAGE__->_setup;

DESCRIPTION

Top

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

Top

Egg::Release, Egg::Component,

AUTHOR

Top

Masatoshi Mizuno <lushe&64;cpan.org>

COPYRIGHT AND LICENSE

Top


Egg-Release documentation Contained in the Egg-Release distribution.

package Egg::Component::Base;
#
# Masatoshi Mizuno E<lt>lusheE<64>cpan.orgE<gt>
#
# $Id: Base.pm 337 2008-05-14 12:30:09Z lushe $
#
use strict;
use warnings;

our $VERSION= '3.01';

sub _import         { @_ }
sub _startup        { @_ }
sub _setup          { @_ }
sub _setup_comp     { @_ }
sub _prepare        { @_ }
sub _dispatch       { @_ }
sub _action_start   { @_ }
sub _action_end     { @_ }
sub _finalize       { @_ }
sub _finalize_error { @_ }
sub _output         { @_ }
sub _finish         { @_ }
sub _result         { @_ }

1;

__END__