T - The return type of the visit operation. Use Void for
operations with no return type.public class VelocityVariablesBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements VelocityVariablesVisitor<T>
VelocityVariablesVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
VelocityVariablesBaseVisitor() |
| Modifier and Type | Method and Description |
|---|---|
T |
visitVariable(VelocityVariablesParser.VariableContext ctx)
Visit a parse tree produced by
VelocityVariablesParser.variable(). |
T |
visitVariables(VelocityVariablesParser.VariablesContext ctx)
Visit a parse tree produced by
VelocityVariablesParser.variables(). |
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalpublic T visitVariables(VelocityVariablesParser.VariablesContext ctx)
VelocityVariablesParser.variables().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitVariables in interface VelocityVariablesVisitor<T>ctx - the parse treepublic T visitVariable(VelocityVariablesParser.VariableContext ctx)
VelocityVariablesParser.variable().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitVariable in interface VelocityVariablesVisitor<T>ctx - the parse treeCopyright © 2025. All rights reserved.