Interface MethodSignatureParserVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
MethodSignatureParserBaseVisitor
public interface MethodSignatureParserVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
MethodSignatureParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byMethodSignatureParser.classNameOrInterface().Visit a parse tree produced byMethodSignatureParser.dotDot().Visit a parse tree produced byMethodSignatureParser.formalParametersPattern().Visit a parse tree produced byMethodSignatureParser.formalsPattern().Visit a parse tree produced byMethodSignatureParser.formalsPatternAfterDotDot().Visit a parse tree produced byMethodSignatureParser.formalTypePattern().Visit a parse tree produced byMethodSignatureParser.methodPattern().Visit a parse tree produced byMethodSignatureParser.optionalParensTypePattern().Visit a parse tree produced byMethodSignatureParser.simpleNamePattern().Visit a parse tree produced byMethodSignatureParser.targetTypePattern().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitMethodPattern
Visit a parse tree produced byMethodSignatureParser.methodPattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormalParametersPattern
Visit a parse tree produced byMethodSignatureParser.formalParametersPattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormalsPattern
Visit a parse tree produced byMethodSignatureParser.formalsPattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDotDot
Visit a parse tree produced byMethodSignatureParser.dotDot().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormalsPatternAfterDotDot
Visit a parse tree produced byMethodSignatureParser.formalsPatternAfterDotDot().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptionalParensTypePattern
Visit a parse tree produced byMethodSignatureParser.optionalParensTypePattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTargetTypePattern
Visit a parse tree produced byMethodSignatureParser.targetTypePattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormalTypePattern
Visit a parse tree produced byMethodSignatureParser.formalTypePattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassNameOrInterface
Visit a parse tree produced byMethodSignatureParser.classNameOrInterface().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleNamePattern
Visit a parse tree produced byMethodSignatureParser.simpleNamePattern().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-