com.sun.java.accessibility.util
Interface GUIInitializedListener

All Known Implementing Classes:
GUIInitializedMulticaster

public abstract interface GUIInitializedListener
extends java.util.EventListener

The GUIInitializedListener interface is used by the EventQueueMonitor class to notify an interested party when the GUI subsystem has been initialized. This is necessary because assistive technologies can be loaded before the GUI subsystem is initialized. As a result, assistive technologies should check the isGUIInitialized() method of EventQueueMonitor before creating any GUI components. If the return value is true, assistive technologies can create GUI components following the same thread restrictions as any other application. If the return value is false, the assistive technology should register a GUIInitializedListener with the EventQueueMonitor to be notified when the GUI subsystem is initialized.

See Also:
EventQueueMonitor, EventQueueMonitor.isGUIInitialized(), EventQueueMonitor.addGUIInitializedListener(com.sun.java.accessibility.util.GUIInitializedListener), EventQueueMonitor.removeGUIInitializedListener(com.sun.java.accessibility.util.GUIInitializedListener)

Method Summary
 void guiInitialized()
          Invoked when the GUI subsystem is initialized and it's OK for the assisitive technology to create instances of GUI objects.
 

Method Detail

guiInitialized

public void guiInitialized()
Invoked when the GUI subsystem is initialized and it's OK for the assisitive technology to create instances of GUI objects.