Interface TagNodeVisitor


public interface TagNodeVisitor
Defines action to be performed on TagNodes
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    visit(TagNode parentNode, HtmlNode htmlNode)
    Action to be performed on single node in the tree
  • Method Details

    • visit

      boolean visit(TagNode parentNode, HtmlNode htmlNode)
      Action to be performed on single node in the tree
      Parameters:
      parentNode - Parent of tagNode
      htmlNode - node visited
      Returns:
      True if tree traversal should be continued, false if it has to stop.