The Spring Framework

Uses of Class
org.springframework.context.ApplicationEvent

Packages that use ApplicationEvent
org.springframework.context This package builds on the beans package to add support for message sources and for the Observer design pattern, and the ability for application objects to obtain resources using a consistent API. 
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 various utility classes. 
org.springframework.web.portlet Provides JSR-168 portlets that integrate with the application context infrastructure, and the core interfaces and classes for the Portlet variant of Spring's web MVC framework. 
org.springframework.web.portlet.context Support for Spring's application context concept in a portlet environment, including ApplicationContext implementations and various utility classes. 
org.springframework.web.servlet Provides servlets that integrate with the application context infrastructure, and the core interfaces and classes for the Spring web MVC framework. 
 

Uses of ApplicationEvent in org.springframework.context
 

Methods in org.springframework.context with parameters of type ApplicationEvent
 void ApplicationListener.onApplicationEvent(ApplicationEvent event)
          Handle an application event.
 void ApplicationEventPublisher.publishEvent(ApplicationEvent event)
          Notify all listeners registered with this application of an application event.
 

Uses of ApplicationEvent in org.springframework.context.event
 

Subclasses of ApplicationEvent in org.springframework.context.event
 class ContextClosedEvent
          Event raised when an ApplicationContext gets closed.
 class ContextRefreshedEvent
          Event raised when an ApplicationContext gets initialized or refreshed.
 

Methods in org.springframework.context.event with parameters of type ApplicationEvent
 void SimpleApplicationEventMulticaster.multicastEvent(ApplicationEvent event)
           
 void ApplicationEventMulticaster.multicastEvent(ApplicationEvent event)
          Multicast the given application event to appropriate listeners.
 void SourceFilteringListener.onApplicationEvent(ApplicationEvent event)
           
 void ConsoleListener.onApplicationEvent(ApplicationEvent event)
          Deprecated.  
protected  void SourceFilteringListener.onApplicationEventInternal(ApplicationEvent event)
          Actually process the event, after having filtered according to the desired event source already.
 

Uses of ApplicationEvent in org.springframework.context.support
 

Methods in org.springframework.context.support with parameters of type ApplicationEvent
 void AbstractApplicationContext.publishEvent(ApplicationEvent event)
          Publish the given event to all listeners.
 

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

Subclasses of ApplicationEvent in org.springframework.web.context.support
 class RequestHandledEvent
          Event raised when a request is handled within an ApplicationContext.
 class ServletRequestHandledEvent
          Servlet-specific subclass of RequestHandledEvent, adding servlet-specific context information.
 

Methods in org.springframework.web.context.support with parameters of type ApplicationEvent
 void PerformanceMonitorListener.onApplicationEvent(ApplicationEvent event)
           
 

Uses of ApplicationEvent in org.springframework.web.portlet
 

Methods in org.springframework.web.portlet with parameters of type ApplicationEvent
 void FrameworkPortlet.onApplicationEvent(ApplicationEvent event)
          ApplicationListener endpoint that receives events from this servlet's WebApplicationContext.
 

Uses of ApplicationEvent in org.springframework.web.portlet.context
 

Subclasses of ApplicationEvent in org.springframework.web.portlet.context
 class PortletRequestHandledEvent
          Portlet-specific subclass of RequestHandledEvent, adding portlet-specific context information.
 

Uses of ApplicationEvent in org.springframework.web.servlet
 

Methods in org.springframework.web.servlet with parameters of type ApplicationEvent
 void FrameworkServlet.onApplicationEvent(ApplicationEvent event)
          ApplicationListener endpoint that receives events from this servlet's WebApplicationContext.
 


The Spring Framework

Copyright © 2002-2007 The Spring Framework.