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 ComponentEvents.
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 voidfire(EventListener listener, EventObject event) Dispatches an event to a specified listener.
-
Constructor Details
-
ClickListeners
public ClickListeners()
-
-
Method Details
-
fire
Description copied from class:ListenersDispatches 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.
-