org.excel4j.reflect
Interface FunctionListener

All Known Implementing Classes:
FunctionStatistics

public interface FunctionListener

Allows interception of functions.


Method Summary
 void endFunction(java.lang.reflect.Method method, java.lang.Object result, java.lang.Throwable error)
          Indicates the end of a function call.
 void startFunction(ReflectAddin addin, java.lang.reflect.Method method, java.lang.Object[] args)
          Indicates the start of a function call.
 

Method Detail

startFunction

void startFunction(ReflectAddin addin,
                   java.lang.reflect.Method method,
                   java.lang.Object[] args)
Indicates the start of a function call.

Parameters:
addin. -
method. -
args. -

endFunction

void endFunction(java.lang.reflect.Method method,
                 java.lang.Object result,
                 java.lang.Throwable error)
Indicates the end of a function call.

Parameters:
method. -
error - (Optional error).