I have a hierarchy with several levels, it looks something like this (<---- denotes subclassing of left from right):
MyClass <----- ParentClass <------ Abstract Class
I want to call a non-static method that is declared and defined in AbstractClass, but is overridden in ParentClass. I want to call the version in AbstractClass, not the version in ParentClass, so I need something like
super.super.method();
Or something of that spirit. Is there a way to do this?
Thanks!