Uses of Interface
com.vladsch.flexmark.util.ast.Visitor
-
-
Uses of Visitor in com.vladsch.flexmark.util.ast
Subinterfaces of Visitor in com.vladsch.flexmark.util.ast Modifier and Type Interface Description interfaceNodeVisitHandlerInterface 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 childrenClasses in com.vladsch.flexmark.util.ast that implement Visitor Modifier and Type Class Description classBlockNodeVisitorUsed to visit only block nodes, non block nodes or children of non-block nodes are not visitedclassNodeVisitorclassVisitHandler<N extends Node>Node visit handler for specific node typeMethod parameters in com.vladsch.flexmark.util.ast with type arguments of type Visitor Modifier and Type Method Description voidBlockNodeVisitor. processNode(@NotNull Node node, boolean withChildren, @NotNull BiConsumer<Node,Visitor<Node>> processor)Constructors in com.vladsch.flexmark.util.ast with parameters of type Visitor Constructor Description VisitHandler(@NotNull Class<N> klass, @NotNull Visitor<N> adapter)
-