Home | History | Annotate | Download | only in util

Lines Matching defs:listener

30  * which associates a set of additional parameters with the listener.
39 * PropertyChangeListener listener)
41 * If the bean also implemented the zero argument get listener method:
56 private final T listener;
59 * Creates a proxy for the specified listener.
61 * @param listener the listener object
63 public EventListenerProxy(T listener) {
64 this.listener = listener;
68 * Returns the listener associated with the proxy.
70 * @return the listener associated with the proxy
73 return this.listener;