in reply to Java Style Interface Objects?

One approach you have is die() on interface's method signature.
sub method_i_should_overload { die "Overload this!"; }
But I really don't know why you want do that. Perl will look every @ISA for the method you're looking for. You won't need that on Perl.

Igor 'izut' Sutton
your code, your rules.