There's nothing like that, but one way I've seen the same thing done
is to add a module_postamble that adds a line like:
require My::Whatever::Extra;
to the My::Whatever class, then put all your customization inside
My/Whatever/Extra.pm. That way, you can regenerate all the
non-"Extra" .pm files without overwriting your customizations.
-John