Class TourCompletedEvent
java.lang.Object
java.util.EventObject
com.vaadin.flow.component.ComponentEvent<com.vaadin.flow.component.Component>
org.vaadin.addons.antlerflow.tour.events.TourCompletedEvent
- All Implemented Interfaces:
Serializable
public class TourCompletedEvent
extends com.vaadin.flow.component.ComponentEvent<com.vaadin.flow.component.Component>
Event class representing the completion of a guided tour.
This event is triggered when a guided tour successfully reaches its conclusion. It provides information about the source component that initiated the event and whether the event was triggered from the client-side.
The `TourCompletedEvent` can be used in conjunction with the guided tour framework to handle post-completion actions, such as showing confirmation messages, updating application state, or triggering additional workflows based on the tour's successful completion.
- See Also:
-
Field Summary
Fields inherited from class EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionTourCompletedEvent(com.vaadin.flow.component.Component source, boolean fromClient) -
Method Summary
Methods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListenerMethods inherited from class EventObject
toString
-
Constructor Details
-
TourCompletedEvent
public TourCompletedEvent(com.vaadin.flow.component.Component source, boolean fromClient)
-