T - The return type of the visit operation. Use Void for
operations with no return type.public class JMethodSigBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements JMethodSigVisitor<T>
JMethodSigVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
JMethodSigBaseVisitor() |
| Modifier and Type | Method and Description |
|---|---|
T |
visitClassName(JMethodSigParser.ClassNameContext ctx)
Visit a parse tree produced by
JMethodSigParser.className(). |
T |
visitComplexType(JMethodSigParser.ComplexTypeContext ctx)
Visit a parse tree produced by
JMethodSigParser.complexType(). |
T |
visitInit(JMethodSigParser.InitContext ctx)
Visit a parse tree produced by
JMethodSigParser.init(). |
T |
visitMethodName(JMethodSigParser.MethodNameContext ctx)
Visit a parse tree produced by
JMethodSigParser.methodName(). |
T |
visitParameters(JMethodSigParser.ParametersContext ctx)
Visit a parse tree produced by
JMethodSigParser.parameters(). |
T |
visitType(JMethodSigParser.TypeContext ctx)
Visit a parse tree produced by
JMethodSigParser.type(). |
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalpublic T visitComplexType(@NotNull JMethodSigParser.ComplexTypeContext ctx)
JMethodSigParser.complexType().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.visitComplexType in interface JMethodSigVisitor<T>ctx - the parse treepublic T visitInit(@NotNull JMethodSigParser.InitContext ctx)
JMethodSigParser.init().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.visitInit in interface JMethodSigVisitor<T>ctx - the parse treepublic T visitClassName(@NotNull JMethodSigParser.ClassNameContext ctx)
JMethodSigParser.className().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.visitClassName in interface JMethodSigVisitor<T>ctx - the parse treepublic T visitParameters(@NotNull JMethodSigParser.ParametersContext ctx)
JMethodSigParser.parameters().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.visitParameters in interface JMethodSigVisitor<T>ctx - the parse treepublic T visitType(@NotNull JMethodSigParser.TypeContext ctx)
JMethodSigParser.type().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.visitType in interface JMethodSigVisitor<T>ctx - the parse treepublic T visitMethodName(@NotNull JMethodSigParser.MethodNameContext ctx)
JMethodSigParser.methodName().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.visitMethodName in interface JMethodSigVisitor<T>ctx - the parse treeCopyright © 2015. All rights reserved.