Package com.vladsch.flexmark.util.ast
Interface NodeVisitHandler
- All Known Implementing Classes:
BlockNodeVisitor
,NodeVisitor
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 TypeMethodDescriptionvoid
visitChildren
(@NotNull Node parent) void
visitNodeOnly
(@NotNull Node node)
-
Method Details
-
visitNodeOnly
-
visitChildren
-