Interface AnnotationSignatureParserVisitor<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:
AnnotationSignatureParserBaseVisitor
public interface AnnotationSignatureParserVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
AnnotationSignatureParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byAnnotationSignatureParser.annotation().Visit a parse tree produced byAnnotationSignatureParser.annotationName().Visit a parse tree produced byAnnotationSignatureParser.classOrInterfaceType().Visit a parse tree produced byAnnotationSignatureParser.elementValue().Visit a parse tree produced byAnnotationSignatureParser.elementValuePair().Visit a parse tree produced byAnnotationSignatureParser.elementValuePairs().Visit a parse tree produced byAnnotationSignatureParser.literal().Visit a parse tree produced byAnnotationSignatureParser.primary().Visit a parse tree produced byAnnotationSignatureParser.qualifiedName().Visit a parse tree produced byAnnotationSignatureParser.type().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitAnnotation
Visit a parse tree produced byAnnotationSignatureParser.annotation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationName
Visit a parse tree produced byAnnotationSignatureParser.annotationName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualifiedName
Visit a parse tree produced byAnnotationSignatureParser.qualifiedName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValuePairs
Visit a parse tree produced byAnnotationSignatureParser.elementValuePairs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValuePair
Visit a parse tree produced byAnnotationSignatureParser.elementValuePair().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValue
Visit a parse tree produced byAnnotationSignatureParser.elementValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimary
Visit a parse tree produced byAnnotationSignatureParser.primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitType
Visit a parse tree produced byAnnotationSignatureParser.type().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassOrInterfaceType
Visit a parse tree produced byAnnotationSignatureParser.classOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteral
Visit a parse tree produced byAnnotationSignatureParser.literal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-