Uses of Interface
org.springframework.context.ApplicationListener

Packages that use ApplicationListener
org.springframework.context.event Support classes for application events, like standard context events. 
org.springframework.context.support Classes supporting the org.springframework.context package, such as abstract base classes for ApplicationContext implementations and a MessageSource implementation. 
org.springframework.web.context.support Classes supporting the org.springframework.web.context package, such as WebApplicationContext implementations, and a utility class for retrieval of the root application context etc. 
 

Uses of ApplicationListener in org.springframework.context.event
 

Subinterfaces of ApplicationListener in org.springframework.context.event
 interface ApplicationEventMulticaster
          Subinterface of ApplicationListener to be implemented by listeners that can broadcast events to other listeners.
 

Classes in org.springframework.context.event that implement ApplicationListener
 class ApplicationEventMulticasterImpl
          Concrete implementation of ApplicationEventMulticaster Doesn't permit multiple instances of the same listener.
 class ConsoleListener
          Simple listener for debug use only that logs messages to the console.
 

Methods in org.springframework.context.event with parameters of type ApplicationListener
 void ApplicationEventMulticasterImpl.addApplicationListener(ApplicationListener l)
           
 void ApplicationEventMulticasterImpl.removeApplicationListener(ApplicationListener l)
           
 void ApplicationEventMulticaster.addApplicationListener(ApplicationListener listener)
          Add a listener to be notified of all events
 void ApplicationEventMulticaster.removeApplicationListener(ApplicationListener listener)
          Remove a listener in the notification list]
 

Uses of ApplicationListener in org.springframework.context.support
 

Methods in org.springframework.context.support with parameters of type ApplicationListener
protected  void AbstractApplicationContext.addListener(ApplicationListener listener)
          Subclasses can invoke this method to register a listener.
 

Uses of ApplicationListener in org.springframework.web.context.support
 

Classes in org.springframework.web.context.support that implement ApplicationListener
 class PerformanceMonitorListener
          Listener that logs the response times of web requests.
 



Copyright (C) 2003-2004 The Spring Framework Project.