org.springframework.context
Interface ApplicationListener

All Superinterfaces:
java.util.EventListener
All Known Subinterfaces:
ApplicationEventMulticaster
All Known Implementing Classes:
ApplicationEventMulticasterImpl, ConsoleListener, PerformanceMonitorListener

public interface ApplicationListener
extends java.util.EventListener

Interface to be implemented by event listeners. Based on standard java.util base class for Observer design pattern.

Author:
Rod Johnson

Method Summary
 void onApplicationEvent(ApplicationEvent e)
          Handle an application event
 

Method Detail

onApplicationEvent

public void onApplicationEvent(ApplicationEvent e)
Handle an application event

Parameters:
e - event to respond to


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