Uses of Interface
com.vladsch.flexmark.util.visitor.AstAction
-
Packages that use AstAction Package Description com.vladsch.flexmark.ast.util com.vladsch.flexmark.formatter com.vladsch.flexmark.html.renderer com.vladsch.flexmark.util.ast com.vladsch.flexmark.util.visitor -
-
Uses of AstAction in com.vladsch.flexmark.ast.util
Subinterfaces of AstAction in com.vladsch.flexmark.ast.util Modifier and Type Interface Description static interface
AttributeProvidingHandler.AttributeProvidingVisitor<N extends Node>
static interface
LinkResolvingHandler.LinkResolvingVisitor<N extends Node>
Classes in com.vladsch.flexmark.ast.util that implement AstAction Modifier and Type Class Description class
AttributeProviderAdapter
class
LinkResolverAdapter
-
Uses of AstAction in com.vladsch.flexmark.formatter
Subinterfaces of AstAction in com.vladsch.flexmark.formatter Modifier and Type Interface Description static interface
NodeFormattingHandler.CustomNodeFormatter<N extends Node>
-
Uses of AstAction in com.vladsch.flexmark.html.renderer
Subinterfaces of AstAction in com.vladsch.flexmark.html.renderer Modifier and Type Interface Description static interface
NodeRenderingHandler.CustomNodeRenderer<N extends Node>
-
Uses of AstAction in com.vladsch.flexmark.util.ast
Subinterfaces of AstAction in com.vladsch.flexmark.util.ast Modifier and Type Interface Description interface
NodeVisitHandler
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 childreninterface
Visitor<N extends Node>
Node visitor interfaceClasses in com.vladsch.flexmark.util.ast that implement AstAction Modifier and Type Class Description class
BlockNodeVisitor
Used to visit only block nodes, non block nodes or children of non-block nodes are not visitedclass
NodeVisitor
class
VisitHandler<N extends Node>
Node visit handler for specific node type -
Uses of AstAction in com.vladsch.flexmark.util.visitor
Classes in com.vladsch.flexmark.util.visitor with type parameters of type AstAction Modifier and Type Class Description class
AstActionHandler<C extends AstActionHandler<C,N,A,H>,N,A extends AstAction<N>,H extends AstHandler<N,A>>
Intended to be completed by subclasses for specific node types and node actionsclass
AstHandler<N,A extends AstAction<? super N>>
Base class for tracking generic node to specific node handlerFields in com.vladsch.flexmark.util.visitor declared as AstAction Modifier and Type Field Description private A
AstHandler. adapter
-