Hi,
In
Java, you're not allowed to call super.super. Childs have acces to their parents, but not to their grandparents...
Why would you need to call a method in the grandparent-class? Maybe this problem points you to e design that could be better? If C needs the implementation of A, couldn't it be a direct child of A then?