Interface TourItem

All Known Implementing Classes:
MarkdownTourItem

public interface TourItem
A single item in a GuiTour.

This should provide a title, a list of nodes to highlight, and a page to display that explains the purpose of the nodes.

It is permitted to return an empty list of nodes to highlight, in which case the page should provide a more general explanation.

  • Method Summary

    Modifier and Type
    Method
    Description
    javafx.scene.Node
    Create a content page to display for this item.
    List<javafx.scene.Node>
    Get a list of nodes to highlight.
    Get the title for this item.
  • Method Details

    • getTitle

      String getTitle()
      Get the title for this item.
      Returns:
    • getHighlightNodes

      List<javafx.scene.Node> getHighlightNodes()
      Get a list of nodes to highlight.
      Returns:
    • createPage

      javafx.scene.Node createPage()
      Create a content page to display for this item.
      Returns: