Definition of a generic event listener interface.
This event listener interface is used throughout the Commons Configuration library for reacting on all kinds of supported events. The interface is pretty minimalistic, defining only a single {@code onEvent()} method. This simplifies the implementation of custom eventlisteners and also supports the new language features introduced with Java 8 ( {@code EventListener} is a functional interface and thus can be representedby a Lambda expression).
@version $Id: EventListener.java 1624601 2014-09-12 18:04:36Z oheger $ @since 2.0 @param < T> the type of events this listener can process
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|