- 
- All Superinterfaces:
- EventListener
 
 public interface TopLevelWindowListener extends EventListener TheTopLevelWindowListenerinterface is used by theEventQueueMonitorclass to notify an interested party when a top level window is created or destroyed in the Java Virtual Machine. Classes wishing to express an interest in top level window events should implement this interface and register themselves with theEventQueueMonitorby calling theEventQueueMonitor.addTopLevelWindowListenerclass method.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtopLevelWindowCreated(Window w)Invoked when a new top level window has been created.voidtopLevelWindowDestroyed(Window w)Invoked when a top level window has been destroyed.
 
- 
- 
- 
Method Detail- 
topLevelWindowCreatedvoid topLevelWindowCreated(Window w) Invoked when a new top level window has been created.- Parameters:
- w- the Window that was created
 
 - 
topLevelWindowDestroyedvoid topLevelWindowDestroyed(Window w) Invoked when a top level window has been destroyed.- Parameters:
- w- the Window that was destroyed
 
 
- 
 
-