- or download this
package MyDateExperiment ;
use base qw/Class::DBI/ ;
...
$class->set_nls_date_format( $oldFormat ) ;
return $ans ;
}
- or download this
foreach my $meth (qw/create get set/) {
no strict qw/refs/ ;
...
return $ans ;
}
}
- or download this
no strict qw/refs/ ;
my $originalFunction = \&{__PACKAGE__ . "::$meth" } ;
...
my $ans = $originalFunction->( $class, @_ ) ;
...
}
- or download this
...
my ($papa) = Class::ISA::super_path($class) ;
my $papaMethod = $papa->can($meth) ;
my $ans = $papaMethod->($papa, @_ ) ;
...
- or download this
...
my $ans = $class->SUPER::{"$meth"}( @_ ) ;
...