org.apache.tapestry.listener
Interface ListenerMethodInvoker
- All Known Implementing Classes:
- ListenerMethodInvokerImpl
- public interface ListenerMethodInvoker
An object, used by a ListenerMap
, to match requests
(possibly with service parameters) to methods (possibly with arguments). Given a request, a
(possibly null or empty) array of service parameters, and a target object (and its set of public
void methods), the mapping will search for the mostly likely mapping. In order:
- public void method(params) (where the method takes the same number of parameters as there
are service parameters)
- public void method(IRequestCycle, params)
- public void method()
- public void method(IRequestCycle)
- Since:
- 4.0
- Author:
- Howard M. Lewis Ship
invokeListenerMethod
public void invokeListenerMethod(java.lang.Object target,
IRequestCycle cycle)