jacareto.catching |
Classes for getting events from the AWT event queue. The main class of this package is the class {@link jacareto.catching.EventListener} which can be registered
at the AWTEventQueue . A {@link jacareto.catching.Catcher} is a class which retrieves events it is
interested in from the EventListener .
|
Java Source File Name | Type | Comment |
AWTEventRecorder.java | Class |
Saves events dispatched by the AWT event queue to a specified record. |
Catcher.java | Class | Abstract superclass for classes which want to get system-wide dispatched events from the
jacareto.catching.EventListener instance during a capture process. |
DetermineComponent.java | Class | Reports components which have been selected by a user to an object which implements the
DetermineComponentObserver interface. |
DetermineComponentObserver.java | Interface | Interface for object which are waiting for components delivered by a
jacareto.catching.DetermineComponent object. |
EventDebugger.java | Class | Prints all events to the logger instance with DEBUG level. |
EventListener.java | Class |
Class for capturing events. |
EventObjectListener.java | Interface | A listener for event objects. |
EventObjectQueue.java | Class | A queue which stores and dispatches event objects. |
EventObjectRecorder.java | Class | Abstract superclass for classes which catch event objects and store them to the record. |
FileDialogWatcher.java | Class | A module which watches file dialogs, because those windows are heavy-weight. |
KeyStrokeCatcher.java | Class |
This class catches keyboard strokes.
A key stroke must be registered before instances of this class will pay attention to it. |
KeyStrokeObserver.java | Interface | Interface for objects which are waiting for key strokes delivered by a
jacareto.catching.KeyStrokeCatcher object. |
LastMousePosition.java | Class | This class saves the component name and the coordinates of the last mouse event. |
PopUpCatcher.java | Class | This class listens for windows popping up (opening). |
PopUpCatcherObserver.java | Interface | Interface for object which are waiting for window pop ups delivered by a
jacareto.catching.PopUpCatcher object. |
SwingEventRecorder.java | Class |
Saves swing events dispatched by the event object queue to a specified record. |
WindowActivationCatcher.java | Class | This class listens for windows activations. |
WindowActivationCatcherObserver.java | Interface | Interface for object which are waiting for window activations delivered by a
jacareto.catching.WindowActivationCatcher object. |