org.springframework.config.java.support
Interface EnhancerMethodInvoker


public interface EnhancerMethodInvoker

Invoking interface for bypassing the decorated class. This interface simply decouples the processing class from the actual bytecode instrumentation libraries.

Author:
Costin Leau

Method Summary
 java.lang.reflect.Method getMethod()
          The method used for invocation.
 java.lang.Object invokeOriginalClass()
          Invoke the original (non decorated) code.
 

Method Detail

invokeOriginalClass

java.lang.Object invokeOriginalClass()
                                     throws java.lang.Throwable
Invoke the original (non decorated) code.

Returns:
method result
Throws:
java.lang.Throwable

getMethod

java.lang.reflect.Method getMethod()
The method used for invocation.

Returns:
method backing the invocation


Copyright © 2005-2007 Spring Framework. All Rights Reserved.