org.wings.event |
Contains events and event listeners that provided by wingS to be used in your application code.
|
Java Source File Name | Type | Comment |
ExitVetoException.java | Class | For vetoing an application triggered session exit. |
InvalidLowLevelEvent.java | Class | A request to an low level event was dropped due to an outdated epoch of this request. |
SAjaxChangeListener.java | Interface | A listener to react on changes of Ajax-requests. |
SComponentAdapter.java | Class | An abstract adapter class for receiving component events.
The methods in this class are empty. |
SComponentDropListener.java | Interface | The Listener interface for receiving drop events generated by the drag and
drop API. |
SComponentEvent.java | Class | A low-level event which indicates that a component moved, changed
size, or changed visibility (also, the root class for the other
component-level events).
Component events are provided for notification purposes ONLY;
WingS will automatically handle component moves and resizes
internally so that GUI layout works properly regardless of
whether a program is receiving these events or not.
In addition to serving as the base class for other component-related
events (InputEvent, FocusEvent, WindowEvent, ContainerEvent),
this class defines the events that indicate changes in
a component's size, position, or visibility.
This low-level event is generated by a component object (such as a
SList) when the component is moved, resized, rendered invisible, or made
visible again. |
SComponentListener.java | Interface | The listener interface for receiving component events.
The class that is interested in processing a component event
either implements this interface (and all the methods it
contains) or extends the abstract ComponentAdapter class
(overriding only the methods of interest).
The listener object created from that class is then registered with a
component using the component's addComponentListener method. |
SContainerEvent.java | Class | A container event, that is issued, whenever a
component is added or removed from an container. |
SContainerListener.java | Interface | This listener is called on modifications on a Container. |
SDocumentAdapter.java | Class | Empty default implementation of
SDocumentListener . |
SDocumentEvent.java | Class | A document event fire on any document change (i.e. |
SDocumentListener.java | Interface | Listener on
org.wings.STextComponent s to be notified on updates on the components text (document). |
SExitEvent.java | Class | Event object fired to
SExitListener . |
SExitListener.java | Interface | Exit listeners can be attached to the current session and will get notified when the session is closed.
They may throw an
ExitVetoException to indicate that they do not want to allow the session
destroying. |
SInternalFrameAdapter.java | Class | Empty default implementation of
SInternalFrameListener . |
SInternalFrameEvent.java | Class | SInternalFrameEvent: an AWTEvent which adds support for
SInternalFrame objects as the event source. |
SInternalFrameListener.java | Interface | The listener interface for receiving internal frame events. |
SInvalidLowLevelEventListener.java | Interface | This interface is used to notify the application about dropped dispatches due to invalid (old)
Epoch ids.
Can be used to i.e. |
SMouseAdapter.java | Class | An abstract adapter class for receiving mouse events. |
SMouseEvent.java | Class | A 'virtual' mouse event. |
SMouseListener.java | Interface | A listener to react on 'virtual' mouse clicks. |
SParentFrameEvent.java | Class | This event is fired if the parent frame of a
SComponent is modified. |
SParentFrameListener.java | Interface | This Listener is called when a component's parent frame reference is
updated i.e. |
SRenderEvent.java | Class | Event fired on render events in
SRenderListener . |
SRenderListener.java | Interface | Render listener are called during the rendering process of a component. |
SRequestEvent.java | Class | A request event meaning aspecific phase that has been reached during the request processing.
Possible states are defined as constants in this class (i.e. |
SRequestListener.java | Interface | Request listeners can be registered in the current
org.wings.session.Session and will receive different events during the various request phases on processing an
HTTP request for this session. |
STableColumnModelEvent.java | Class | |
STableColumnModelListener.java | Interface | |
SViewportChangeEvent.java | Class | SViewportChangeEvent is used to notify interested parties that the viewport
of a Scrollable (the source) has changed either horizontally or vertically. |
SViewportChangeListener.java | Interface | Defines an object which listens for SViewportChangeEvents. |
WeakRequestListenerProxy.java | Class | A SRequestListener implementation, which uses WeakReference. |