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