Consider the following class
class A{ public void init(){ //do this first; } public void atEnd(){ //do this after init of base cl
The other answers are reasonable workarounds but to address the exact question: no, there is no way to do this automatically. You must explicitly call super.method().
super.method()