See: Description
Interface | Description |
---|---|
ActionListener |
Event callback interface invoked when a component action occurs
|
BrowserNavigationCallback |
Important: Calls to this interface are always performed on a separate
thread from the EDT! They are performed on the native webkit rendering
thread or native event dispatch thread, this interface MUST NEVER block
or synchronize against the EDT which WILL lead to deadlocks.
|
DataChangedListener |
Event callback interface invoked when a
ListModel
changes its state thus indicating to the view that it should refresh. |
FocusListener |
Observes focus change events for a given form and invokes the callbacks to
enable us to assign functionality based on current focused component.
|
ScrollListener |
Invoked to indicate a scroll change events
|
SelectionListener |
Invoked to indicate a selection change in the list model
|
StyleListener |
Invoked to indicate a change in a
Style property |
Class | Description |
---|---|
ActionEvent |
Event object delivered when an
ActionListener callback is invoked |
Observable pattern event listeners in the spirit of AWT 1.1's event
dispatching architecture, all events are dispatched on the EDT (Event Dispatch Thread).
See the overview documentation for further information and Display
.