Lets suppose I have the following two classes
public class alpha { public alpha(){ //some logic } public void alphaMethod1(){ /
You can do:
super.alphaMethod1();
Note, that super is a reference to the parent, but super() is it's constructor.
super