HelpNode

Represents a node in the tree made of topics and HelpPage s.

API

HelpNode.java
interface HelpNode {
  TreePath getPath()
  String getTitle()
  HelpNodeType getHelpNodeType()
  AsciiDoc getContent()
  Optional<HelpTopic> getParent()
  int childCount()
  Stream<HelpNode> streamChildNodes()
  Optional<HelpNode> getChildNode(int index)
}