Package org.reploop.parser.java.base
Interface JavaParserVisitor<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:
JavaAstBuilder,JavaParserBaseVisitor
public interface JavaParserVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>This interface defines a complete generic visitor for a parse tree produced byJavaParser.
-
-
Method Summary
-
-
-
Method Detail
-
visitCompilationUnit
T visitCompilationUnit(JavaParser.CompilationUnitContext ctx)
Visit a parse tree produced byJavaParser.compilationUnit().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPackageDeclaration
T visitPackageDeclaration(JavaParser.PackageDeclarationContext ctx)
Visit a parse tree produced byJavaParser.packageDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImportDeclaration
T visitImportDeclaration(JavaParser.ImportDeclarationContext ctx)
Visit a parse tree produced byJavaParser.importDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeDeclaration
T visitTypeDeclaration(JavaParser.TypeDeclarationContext ctx)
Visit a parse tree produced byJavaParser.typeDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModifier
T visitModifier(JavaParser.ModifierContext ctx)
Visit a parse tree produced byJavaParser.modifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassOrInterfaceModifier
T visitClassOrInterfaceModifier(JavaParser.ClassOrInterfaceModifierContext ctx)
Visit a parse tree produced byJavaParser.classOrInterfaceModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableModifier
T visitVariableModifier(JavaParser.VariableModifierContext ctx)
Visit a parse tree produced byJavaParser.variableModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassDeclaration
T visitClassDeclaration(JavaParser.ClassDeclarationContext ctx)
Visit a parse tree produced byJavaParser.classDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeParameters
T visitTypeParameters(JavaParser.TypeParametersContext ctx)
Visit a parse tree produced byJavaParser.typeParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeParameter
T visitTypeParameter(JavaParser.TypeParameterContext ctx)
Visit a parse tree produced byJavaParser.typeParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeBound
T visitTypeBound(JavaParser.TypeBoundContext ctx)
Visit a parse tree produced byJavaParser.typeBound().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumDeclaration
T visitEnumDeclaration(JavaParser.EnumDeclarationContext ctx)
Visit a parse tree produced byJavaParser.enumDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumConstants
T visitEnumConstants(JavaParser.EnumConstantsContext ctx)
Visit a parse tree produced byJavaParser.enumConstants().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumConstant
T visitEnumConstant(JavaParser.EnumConstantContext ctx)
Visit a parse tree produced byJavaParser.enumConstant().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnumBodyDeclarations
T visitEnumBodyDeclarations(JavaParser.EnumBodyDeclarationsContext ctx)
Visit a parse tree produced byJavaParser.enumBodyDeclarations().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceDeclaration
T visitInterfaceDeclaration(JavaParser.InterfaceDeclarationContext ctx)
Visit a parse tree produced byJavaParser.interfaceDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassBody
T visitClassBody(JavaParser.ClassBodyContext ctx)
Visit a parse tree produced byJavaParser.classBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceBody
T visitInterfaceBody(JavaParser.InterfaceBodyContext ctx)
Visit a parse tree produced byJavaParser.interfaceBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassBodyDeclaration
T visitClassBodyDeclaration(JavaParser.ClassBodyDeclarationContext ctx)
Visit a parse tree produced byJavaParser.classBodyDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMemberDeclaration
T visitMemberDeclaration(JavaParser.MemberDeclarationContext ctx)
Visit a parse tree produced byJavaParser.memberDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodDeclaration
T visitMethodDeclaration(JavaParser.MethodDeclarationContext ctx)
Visit a parse tree produced byJavaParser.methodDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodBody
T visitMethodBody(JavaParser.MethodBodyContext ctx)
Visit a parse tree produced byJavaParser.methodBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeTypeOrVoid
T visitTypeTypeOrVoid(JavaParser.TypeTypeOrVoidContext ctx)
Visit a parse tree produced byJavaParser.typeTypeOrVoid().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericMethodDeclaration
T visitGenericMethodDeclaration(JavaParser.GenericMethodDeclarationContext ctx)
Visit a parse tree produced byJavaParser.genericMethodDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericConstructorDeclaration
T visitGenericConstructorDeclaration(JavaParser.GenericConstructorDeclarationContext ctx)
Visit a parse tree produced byJavaParser.genericConstructorDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstructorDeclaration
T visitConstructorDeclaration(JavaParser.ConstructorDeclarationContext ctx)
Visit a parse tree produced byJavaParser.constructorDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFieldDeclaration
T visitFieldDeclaration(JavaParser.FieldDeclarationContext ctx)
Visit a parse tree produced byJavaParser.fieldDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceBodyDeclaration
T visitInterfaceBodyDeclaration(JavaParser.InterfaceBodyDeclarationContext ctx)
Visit a parse tree produced byJavaParser.interfaceBodyDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceMemberDeclaration
T visitInterfaceMemberDeclaration(JavaParser.InterfaceMemberDeclarationContext ctx)
Visit a parse tree produced byJavaParser.interfaceMemberDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstDeclaration
T visitConstDeclaration(JavaParser.ConstDeclarationContext ctx)
Visit a parse tree produced byJavaParser.constDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstantDeclarator
T visitConstantDeclarator(JavaParser.ConstantDeclaratorContext ctx)
Visit a parse tree produced byJavaParser.constantDeclarator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceMethodDeclaration
T visitInterfaceMethodDeclaration(JavaParser.InterfaceMethodDeclarationContext ctx)
Visit a parse tree produced byJavaParser.interfaceMethodDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterfaceMethodModifier
T visitInterfaceMethodModifier(JavaParser.InterfaceMethodModifierContext ctx)
Visit a parse tree produced byJavaParser.interfaceMethodModifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericInterfaceMethodDeclaration
T visitGenericInterfaceMethodDeclaration(JavaParser.GenericInterfaceMethodDeclarationContext ctx)
Visit a parse tree produced byJavaParser.genericInterfaceMethodDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableDeclarators
T visitVariableDeclarators(JavaParser.VariableDeclaratorsContext ctx)
Visit a parse tree produced byJavaParser.variableDeclarators().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableDeclarator
T visitVariableDeclarator(JavaParser.VariableDeclaratorContext ctx)
Visit a parse tree produced byJavaParser.variableDeclarator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableDeclaratorId
T visitVariableDeclaratorId(JavaParser.VariableDeclaratorIdContext ctx)
Visit a parse tree produced byJavaParser.variableDeclaratorId().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableInitializer
T visitVariableInitializer(JavaParser.VariableInitializerContext ctx)
Visit a parse tree produced byJavaParser.variableInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayInitializer
T visitArrayInitializer(JavaParser.ArrayInitializerContext ctx)
Visit a parse tree produced byJavaParser.arrayInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassOrInterfaceType
T visitClassOrInterfaceType(JavaParser.ClassOrInterfaceTypeContext ctx)
Visit a parse tree produced byJavaParser.classOrInterfaceType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeArgument
T visitTypeArgument(JavaParser.TypeArgumentContext ctx)
Visit a parse tree produced byJavaParser.typeArgument().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualifiedNameList
T visitQualifiedNameList(JavaParser.QualifiedNameListContext ctx)
Visit a parse tree produced byJavaParser.qualifiedNameList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormalParameters
T visitFormalParameters(JavaParser.FormalParametersContext ctx)
Visit a parse tree produced byJavaParser.formalParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormalParameterList
T visitFormalParameterList(JavaParser.FormalParameterListContext ctx)
Visit a parse tree produced byJavaParser.formalParameterList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormalParameter
T visitFormalParameter(JavaParser.FormalParameterContext ctx)
Visit a parse tree produced byJavaParser.formalParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLastFormalParameter
T visitLastFormalParameter(JavaParser.LastFormalParameterContext ctx)
Visit a parse tree produced byJavaParser.lastFormalParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualifiedName
T visitQualifiedName(JavaParser.QualifiedNameContext ctx)
Visit a parse tree produced byJavaParser.qualifiedName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteral
T visitLiteral(JavaParser.LiteralContext ctx)
Visit a parse tree produced byJavaParser.literal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntegerLiteral
T visitIntegerLiteral(JavaParser.IntegerLiteralContext ctx)
Visit a parse tree produced byJavaParser.integerLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFloatLiteral
T visitFloatLiteral(JavaParser.FloatLiteralContext ctx)
Visit a parse tree produced byJavaParser.floatLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotation
T visitAnnotation(JavaParser.AnnotationContext ctx)
Visit a parse tree produced byJavaParser.annotation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValuePairs
T visitElementValuePairs(JavaParser.ElementValuePairsContext ctx)
Visit a parse tree produced byJavaParser.elementValuePairs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValuePair
T visitElementValuePair(JavaParser.ElementValuePairContext ctx)
Visit a parse tree produced byJavaParser.elementValuePair().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValue
T visitElementValue(JavaParser.ElementValueContext ctx)
Visit a parse tree produced byJavaParser.elementValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElementValueArrayInitializer
T visitElementValueArrayInitializer(JavaParser.ElementValueArrayInitializerContext ctx)
Visit a parse tree produced byJavaParser.elementValueArrayInitializer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationTypeDeclaration
T visitAnnotationTypeDeclaration(JavaParser.AnnotationTypeDeclarationContext ctx)
Visit a parse tree produced byJavaParser.annotationTypeDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationTypeBody
T visitAnnotationTypeBody(JavaParser.AnnotationTypeBodyContext ctx)
Visit a parse tree produced byJavaParser.annotationTypeBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationTypeElementDeclaration
T visitAnnotationTypeElementDeclaration(JavaParser.AnnotationTypeElementDeclarationContext ctx)
Visit a parse tree produced byJavaParser.annotationTypeElementDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationTypeElementRest
T visitAnnotationTypeElementRest(JavaParser.AnnotationTypeElementRestContext ctx)
Visit a parse tree produced byJavaParser.annotationTypeElementRest().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationMethodOrConstantRest
T visitAnnotationMethodOrConstantRest(JavaParser.AnnotationMethodOrConstantRestContext ctx)
Visit a parse tree produced byJavaParser.annotationMethodOrConstantRest().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationMethodRest
T visitAnnotationMethodRest(JavaParser.AnnotationMethodRestContext ctx)
Visit a parse tree produced byJavaParser.annotationMethodRest().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnnotationConstantRest
T visitAnnotationConstantRest(JavaParser.AnnotationConstantRestContext ctx)
Visit a parse tree produced byJavaParser.annotationConstantRest().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefaultValue
T visitDefaultValue(JavaParser.DefaultValueContext ctx)
Visit a parse tree produced byJavaParser.defaultValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBlock
T visitBlock(JavaParser.BlockContext ctx)
Visit a parse tree produced byJavaParser.block().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBlockStatement
T visitBlockStatement(JavaParser.BlockStatementContext ctx)
Visit a parse tree produced byJavaParser.blockStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLocalVariableDeclaration
T visitLocalVariableDeclaration(JavaParser.LocalVariableDeclarationContext ctx)
Visit a parse tree produced byJavaParser.localVariableDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLocalTypeDeclaration
T visitLocalTypeDeclaration(JavaParser.LocalTypeDeclarationContext ctx)
Visit a parse tree produced byJavaParser.localTypeDeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatement
T visitStatement(JavaParser.StatementContext ctx)
Visit a parse tree produced byJavaParser.statement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatchClause
T visitCatchClause(JavaParser.CatchClauseContext ctx)
Visit a parse tree produced byJavaParser.catchClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCatchType
T visitCatchType(JavaParser.CatchTypeContext ctx)
Visit a parse tree produced byJavaParser.catchType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFinallyBlock
T visitFinallyBlock(JavaParser.FinallyBlockContext ctx)
Visit a parse tree produced byJavaParser.finallyBlock().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResourceSpecification
T visitResourceSpecification(JavaParser.ResourceSpecificationContext ctx)
Visit a parse tree produced byJavaParser.resourceSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResources
T visitResources(JavaParser.ResourcesContext ctx)
Visit a parse tree produced byJavaParser.resources().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResource
T visitResource(JavaParser.ResourceContext ctx)
Visit a parse tree produced byJavaParser.resource().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitchBlockStatementGroup
T visitSwitchBlockStatementGroup(JavaParser.SwitchBlockStatementGroupContext ctx)
Visit a parse tree produced byJavaParser.switchBlockStatementGroup().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitchLabel
T visitSwitchLabel(JavaParser.SwitchLabelContext ctx)
Visit a parse tree produced byJavaParser.switchLabel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForControl
T visitForControl(JavaParser.ForControlContext ctx)
Visit a parse tree produced byJavaParser.forControl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForInit
T visitForInit(JavaParser.ForInitContext ctx)
Visit a parse tree produced byJavaParser.forInit().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnhancedForControl
T visitEnhancedForControl(JavaParser.EnhancedForControlContext ctx)
Visit a parse tree produced byJavaParser.enhancedForControl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParExpression
T visitParExpression(JavaParser.ParExpressionContext ctx)
Visit a parse tree produced byJavaParser.parExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionList
T visitExpressionList(JavaParser.ExpressionListContext ctx)
Visit a parse tree produced byJavaParser.expressionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpression
T visitExpression(JavaParser.ExpressionContext ctx)
Visit a parse tree produced byJavaParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambdaExpression
T visitLambdaExpression(JavaParser.LambdaExpressionContext ctx)
Visit a parse tree produced byJavaParser.lambdaExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambdaParameters
T visitLambdaParameters(JavaParser.LambdaParametersContext ctx)
Visit a parse tree produced byJavaParser.lambdaParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLambdaBody
T visitLambdaBody(JavaParser.LambdaBodyContext ctx)
Visit a parse tree produced byJavaParser.lambdaBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimary
T visitPrimary(JavaParser.PrimaryContext ctx)
Visit a parse tree produced byJavaParser.primary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassType
T visitClassType(JavaParser.ClassTypeContext ctx)
Visit a parse tree produced byJavaParser.classType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreator
T visitCreator(JavaParser.CreatorContext ctx)
Visit a parse tree produced byJavaParser.creator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreatedName
T visitCreatedName(JavaParser.CreatedNameContext ctx)
Visit a parse tree produced byJavaParser.createdName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInnerCreator
T visitInnerCreator(JavaParser.InnerCreatorContext ctx)
Visit a parse tree produced byJavaParser.innerCreator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayCreatorRest
T visitArrayCreatorRest(JavaParser.ArrayCreatorRestContext ctx)
Visit a parse tree produced byJavaParser.arrayCreatorRest().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassCreatorRest
T visitClassCreatorRest(JavaParser.ClassCreatorRestContext ctx)
Visit a parse tree produced byJavaParser.classCreatorRest().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplicitGenericInvocation
T visitExplicitGenericInvocation(JavaParser.ExplicitGenericInvocationContext ctx)
Visit a parse tree produced byJavaParser.explicitGenericInvocation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeArgumentsOrDiamond
T visitTypeArgumentsOrDiamond(JavaParser.TypeArgumentsOrDiamondContext ctx)
Visit a parse tree produced byJavaParser.typeArgumentsOrDiamond().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonWildcardTypeArgumentsOrDiamond
T visitNonWildcardTypeArgumentsOrDiamond(JavaParser.NonWildcardTypeArgumentsOrDiamondContext ctx)
Visit a parse tree produced byJavaParser.nonWildcardTypeArgumentsOrDiamond().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonWildcardTypeArguments
T visitNonWildcardTypeArguments(JavaParser.NonWildcardTypeArgumentsContext ctx)
Visit a parse tree produced byJavaParser.nonWildcardTypeArguments().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeList
T visitTypeList(JavaParser.TypeListContext ctx)
Visit a parse tree produced byJavaParser.typeList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeType
T visitTypeType(JavaParser.TypeTypeContext ctx)
Visit a parse tree produced byJavaParser.typeType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimitiveType
T visitPrimitiveType(JavaParser.PrimitiveTypeContext ctx)
Visit a parse tree produced byJavaParser.primitiveType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeArguments
T visitTypeArguments(JavaParser.TypeArgumentsContext ctx)
Visit a parse tree produced byJavaParser.typeArguments().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSuperSuffix
T visitSuperSuffix(JavaParser.SuperSuffixContext ctx)
Visit a parse tree produced byJavaParser.superSuffix().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplicitGenericInvocationSuffix
T visitExplicitGenericInvocationSuffix(JavaParser.ExplicitGenericInvocationSuffixContext ctx)
Visit a parse tree produced byJavaParser.explicitGenericInvocationSuffix().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArguments
T visitArguments(JavaParser.ArgumentsContext ctx)
Visit a parse tree produced byJavaParser.arguments().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-