Interface | Description |
---|---|
ActionListener<T extends ActionEvent> |
Event callback interface invoked when a component action occurs
|
ActionSource<T extends ActionEvent> |
An interface that can be implemented by any class that broadcasts ActionEvents.
|
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 |
ComponentStateChangeEvent |
An event that is fired when the state of a component is changed to and from initialized.
|
MessageEvent |
Encapsulates an event that either originates outside the App (e.g.
|
MessageEvent.PromptPromise |
Encapsulates a promise that should be fulfilled when implementingn a custom permissions
prompt to record or play audio.
|
Enum | Description |
---|---|
ActionEvent.Type |
The event type, as declared when the event is created.
|