Class TourStep

java.lang.Object
org.vaadin.addons.antlerflow.tour.TourStep
All Implemented Interfaces:
Serializable

public class TourStep extends Object implements Serializable
Represents a single step within a guided tour. Each step contains details about the content to be displayed, its position in the UI, and associated action buttons that allow navigation between steps.
A TourStep typically includes the following:
- A unique identifier for the step.
- A title for the step.
- A description or instructional content to guide the user.
- A target UI element to which the step is attached.
- The position where the step is displayed relative to the target UI element.
- A list of navigation buttons (e.g., Previous, Next) that are customizable.
The default configuration provides "Previous" and "Next" buttons for navigation. Additional buttons can be added as needed to customize the user experience.

This class is serializable and can be used to persist tour steps or transmit them over a network.

See Also:
  • Constructor Details

    • TourStep

      public TourStep()