Uses of Interface
io.pebbletemplates.pebble.extension.NodeVisitor
-
-
Uses of NodeVisitor in io.pebbletemplates.pebble.extension
Classes in io.pebbletemplates.pebble.extension that implement NodeVisitor Modifier and Type Class Description class
AbstractNodeVisitor
A base node visitor that can be extended for the sake of using it's navigational abilities.Methods in io.pebbletemplates.pebble.extension that return NodeVisitor Modifier and Type Method Description NodeVisitor
NodeVisitorFactory. createVisitor(PebbleTemplate template)
This method creates a new instance of aNodeVisitor
. -
Uses of NodeVisitor in io.pebbletemplates.pebble.extension.core
Classes in io.pebbletemplates.pebble.extension.core that implement NodeVisitor Modifier and Type Class Description class
MacroAndBlockRegistrantNodeVisitor
Methods in io.pebbletemplates.pebble.extension.core that return NodeVisitor Modifier and Type Method Description NodeVisitor
MacroAndBlockRegistrantNodeVisitorFactory. createVisitor(PebbleTemplate template)
-
Uses of NodeVisitor in io.pebbletemplates.pebble.extension.debug
Classes in io.pebbletemplates.pebble.extension.debug that implement NodeVisitor Modifier and Type Class Description class
PrettyPrintNodeVisitor
Methods in io.pebbletemplates.pebble.extension.debug that return NodeVisitor Modifier and Type Method Description NodeVisitor
PrettyPrintNodeVisitorFactory. createVisitor(PebbleTemplate template)
-
Uses of NodeVisitor in io.pebbletemplates.pebble.extension.escaper
Classes in io.pebbletemplates.pebble.extension.escaper that implement NodeVisitor Modifier and Type Class Description class
EscaperNodeVisitor
Methods in io.pebbletemplates.pebble.extension.escaper that return NodeVisitor Modifier and Type Method Description NodeVisitor
EscaperNodeVisitorFactory. createVisitor(PebbleTemplate template)
-
Uses of NodeVisitor in io.pebbletemplates.pebble.node
Methods in io.pebbletemplates.pebble.node with parameters of type NodeVisitor Modifier and Type Method Description abstract void
AbstractRenderableNode. accept(NodeVisitor visitor)
void
ArgumentsNode. accept(NodeVisitor visitor)
void
AutoEscapeNode. accept(NodeVisitor visitor)
void
BlockNode. accept(NodeVisitor visitor)
void
BodyNode. accept(NodeVisitor visitor)
void
CacheNode. accept(NodeVisitor visitor)
void
EmbedNode. accept(NodeVisitor visitor)
void
ExtendsNode. accept(NodeVisitor visitor)
void
FlushNode. accept(NodeVisitor visitor)
void
ForNode. accept(NodeVisitor visitor)
void
FromNode. accept(NodeVisitor visitor)
void
FunctionOrMacroNameNode. accept(NodeVisitor visitor)
void
IfNode. accept(NodeVisitor visitor)
void
ImportNode. accept(NodeVisitor visitor)
void
IncludeNode. accept(NodeVisitor visitor)
void
MacroNode. accept(NodeVisitor visitor)
void
NamedArgumentNode. accept(NodeVisitor visitor)
void
Node. accept(NodeVisitor visitor)
void
ParallelNode. accept(NodeVisitor visitor)
void
PositionalArgumentNode. accept(NodeVisitor visitor)
void
PrintNode. accept(NodeVisitor visitor)
void
RootNode. accept(NodeVisitor visitor)
void
SetNode. accept(NodeVisitor visitor)
void
TestInvocationExpression. accept(NodeVisitor visitor)
void
TextNode. accept(NodeVisitor visitor)
-
Uses of NodeVisitor in io.pebbletemplates.pebble.node.expression
Methods in io.pebbletemplates.pebble.node.expression with parameters of type NodeVisitor Modifier and Type Method Description void
ArrayExpression. accept(NodeVisitor visitor)
void
BinaryExpression. accept(NodeVisitor visitor)
void
BlockFunctionExpression. accept(NodeVisitor visitor)
void
ContextVariableExpression. accept(NodeVisitor visitor)
void
FilterInvocationExpression. accept(NodeVisitor visitor)
void
FunctionOrMacroInvocationExpression. accept(NodeVisitor visitor)
void
GetAttributeExpression. accept(NodeVisitor visitor)
void
LiteralBigDecimalExpression. accept(NodeVisitor visitor)
void
LiteralBooleanExpression. accept(NodeVisitor visitor)
void
LiteralDoubleExpression. accept(NodeVisitor visitor)
void
LiteralIntegerExpression. accept(NodeVisitor visitor)
void
LiteralLongExpression. accept(NodeVisitor visitor)
void
LiteralNullExpression. accept(NodeVisitor visitor)
void
LiteralStringExpression. accept(NodeVisitor visitor)
void
MapExpression. accept(NodeVisitor visitor)
void
ParentFunctionExpression. accept(NodeVisitor visitor)
void
TernaryExpression. accept(NodeVisitor visitor)
void
UnaryExpression. accept(NodeVisitor visitor)
-