Interface NodeVisitHandler

All Superinterfaces:
AstAction<Node>, Visitor<Node>
All Known Implementing Classes:
BlockNodeVisitor, NodeVisitor

public interface NodeVisitHandler extends Visitor<Node>
Interface to visit variations on specific nodes: visit() visiting node and if no handler defined then visit node's children visitNodeOnly() visit node and if no handler then do not process children visitChildren() visit node's children
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    visitChildren(@NotNull Node parent)
     
    void
    visitNodeOnly(@NotNull Node node)
     

    Methods inherited from interface com.vladsch.flexmark.util.ast.Visitor

    visit
  • Method Details

    • visitNodeOnly

      void visitNodeOnly(@NotNull @NotNull Node node)
    • visitChildren

      void visitChildren(@NotNull @NotNull Node parent)