public boolean visit(SuperConstructorInvocation superConstructorInvocation) {
sLogger.debug("Processing super constructor invocation node");
AbstractASTNodeHandler lInvocationHandler = new SuperConstructorInvocationHandler(this);
fNodeHandler.put(superConstructorInvocation, lInvocationHandler);
return lInvocationHandler.visit(superConstructorInvocation);
}
/**
* Handle class instance creation statements (i.e., new).
*