I have googled couple of times but still can\'t understand the supertype method. Can anyone please explain what is this?
if you are talking about calling a super method, you should try the following
create a class with a method public method e.g. printSomething()
public void printSomething() { System.out.println("hello, I am the first class"); }
create a second class which inherites from the first class and override the printSomething method
@override public void printSomething() { super.printSomething(); }
write a small programm which call the method printSomething of class two and see what will happen