// This covers the implementation of the java.sql.Wrapper interface
delegateMap.put(new MethodNameMatcher("isWrapperFor"), new P6WrapperIsWrapperDelegate());
delegateMap.put(new MethodNameMatcher("unwrap"), new P6WrapperUnwrapDelegate());
// Implementation of Object.equals(Object)
delegateMap.put(new MethodNameMatcher("equals"), new P6ObjectEqualsDelegate());
// Implementation of P6Proxy.unwrapP6SpyProxy()
delegateMap.put(new MethodNameMatcher("unwrapP6SpyProxy"), new P6ProxyUnwrapDelegate());
}