##
return $self->{_cgi};
####
package HandlerMethods;
sub cgi {
my $self = shift;
## first, get whatever the superclass would return
my $cgi_obj = $self->SUPER::cgi;
## then we can slightly refine..
$cgi_obj->param('HandlerMethods', 1);
return $cgi_obj;
}