*/
@Override
public boolean visit(SuperMethodInvocation superMethodInvocation) {
sLogger.debug("Processing super method invocation node");
AbstractASTNodeHandler lInvocationHandler = new SuperMethodInvocationHandler(this);
fNodeHandler.put(superMethodInvocation, lInvocationHandler);
return lInvocationHandler.visit(superMethodInvocation);
}