Package com.p6spy.engine.common

Examples of com.p6spy.engine.common.P6ObjectEqualsDelegate


    // 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());

  }
View Full Code Here

TOP

Related Classes of com.p6spy.engine.common.P6ObjectEqualsDelegate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.