01: /*
02: * Created on Nov 22, 2005
03: */
04: package uk.org.ponder.reflect;
05:
06: /** When encountered in a bean model at path where a method invocation is being
07: * attempted via EL, will accept the invocation via this method call rather than
08: * having it applied reflectively.
09: * @author Antranig Basman (amb26@ponder.org.uk)
10: *
11: */
12:
13: public interface MethodInvokingProxy {
14: public Object invokeMethod(String name, Object[] args);
15: }
|