Interface ListenerObjectCreationObserver
- All Known Implementing Classes:
CachedListenerObjectRetriever
public interface ListenerObjectCreationObserver
This interface is to be implemented by classes who want to be notified when a class is scanned and its listeners created by a
ListenerObjectCreator
. Such classes
need to register themselves with the appropriate ListenerObjectCreator
.- Author:
- G.J. Schouten
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onClassAdded
(Class<?> addedClass) Notifies the implementor that a class is scanned and its listeners created by aListenerObjectCreator
.
-
Method Details
-
onClassAdded
Notifies the implementor that a class is scanned and its listeners created by aListenerObjectCreator
.- Parameters:
addedClass
-
-