org.isqlviewer.event |
Customized events for the use within the iSQL-Viewer program
|
Java Source File Name | Type | Comment |
DatabaseEvent.java | Class | Standard event object for notifying actions of the DatabaseConnection.
This event object more or less works much like the WindowEvent object where there is an ID that correlates to the
type of event is being propagated.
Most if not all the time the source of these events should be an instance of DatabaseConnection to help determine
which connection these events are coming from.
See Also: org.isqlviewer.event.DatabaseListener author: Mark A. |
DatabaseListener.java | Interface | Standard event listener class for the DatabaseEvent object.
See Also: org.isqlviewer.event.DatabaseEvent author: Mark A. |
EventDispatcher.java | Class | TODO Add EventDispatcher Overview JavaDoc.
author: Mark A. |
EventProxyDelegate.java | Interface | Collection of listener interfaces that collectively represent the events handled by the EventDispatcher.
It is probably lame to group the interfaces like this but since i don't have to look here my class declaration for
the EventDispatcher looks nicer.
author: Mark A. |
ProgressEvent.java | Class | Event for describing a progression.
This object is mainly designed to complement JProgressBars. |
ProgressListener.java | Interface | Listener Object to complement the ProgressEvent object.
author: Mark A. |