vote up 2 vote down star
1

In the javadoc it says that EventListener is

"A tagging interface that all event listener interfaces must extend."

Why is that? What's the significance of making a custom listener implement EventListner? Is there any special handling for EventListner somewhere?

flag

2 Answers

vote up 3 vote down check

It’s only important if you want to use an EventListenerList or an EventListenerProxy. I like to use it on my own event listener interfaces as well, though. It makes the purpose of the interface much clearer.

link|flag
Can't you just make your interface extend EventListener and get the best of both worlds? – Hank Gay Dec 16 '08 at 12:00
That’s exactly what I do so what is the other world you’re talking of? :) – Bombe Dec 18 '08 at 11:00
vote up 2 vote down

Probably used by javabeans introspection.

For instance Netbeans beaninfo editor does not recognise the event if extends EventListener is missing from the Listener.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.