org.springframework.context.event
Class ContextRefreshedEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--org.springframework.context.ApplicationEvent
              |
              +--org.springframework.context.event.ContextRefreshedEvent

public class ContextRefreshedEvent
extends ApplicationEvent

Event raised when an ApplicationContext gets initialized or refreshed.

Author:
Juergen Hoeller
Since: 04.03.2003

Constructor Summary
ContextRefreshedEvent(ApplicationContext source)
          Creates a new ContextRefreshedEvent.

Method Summary
 ApplicationContextgetApplicationContext()
           

Methods inherited from class org.springframework.context.ApplicationEvent
getTimestamp

Methods inherited from class java.util.EventObject
getSource, toString

Methods inherited from class java.lang.Object
hashCode, notify, notifyAll, wait, wait, wait, getClass, equals

Constructor Detail

ContextRefreshedEvent

public ContextRefreshedEvent(ApplicationContext source)
Creates a new ContextRefreshedEvent.
Parameters:
source - the ApplicationContext
Method Detail

getApplicationContext

public ApplicationContext getApplicationContext()