Package com.storedobject.vaadin.util
Class ClickListeners
java.lang.Object
com.storedobject.vaadin.util.Listeners
com.storedobject.vaadin.util.ClickListeners
Specialized implementation of the
Listeners
class that manages and notifies
event listeners specifically for handling ComponentEvent
s.
This class dispatches events to listeners that implement the ComponentEventListener
interface.
When an event of type ComponentEvent
is fired, it invokes the
ComponentEventListener.onComponentEvent(ComponentEvent)
method on each registered listener.- Author:
- Syam
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
fire
(EventListener listener, EventObject event) Dispatches an event to a specified listener.
-
Constructor Details
-
ClickListeners
public ClickListeners()
-
-
Method Details
-
fire
Description copied from class:Listeners
Dispatches an event to a specified listener. This method defines how a particular event is delivered to an individual listener. Subclasses must implement this method to define the specific behavior of event delivery.
-