* @param fullMethodName the method name which is executing.
* @return the wrapper for the given class/method
*/
public static ExecutionWrapper getWrapper(
String targetClassName, String fullMethodName ) {
ExecutionClassHandler cHandler
= executionHandlers.get( targetClassName );
return cHandler.getExecutionWrapper( fullMethodName );
}