Package org.apache.flink.table.codesplit
Interface JavaParserListener
-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
JavaParserBaseListener
public interface JavaParserListener extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced byJavaParser
.
-
-
Method Summary
-
-
-
Method Detail
-
enterCompilationUnit
void enterCompilationUnit(JavaParser.CompilationUnitContext ctx)
Enter a parse tree produced byJavaParser.compilationUnit()
.- Parameters:
ctx
- the parse tree
-
exitCompilationUnit
void exitCompilationUnit(JavaParser.CompilationUnitContext ctx)
Exit a parse tree produced byJavaParser.compilationUnit()
.- Parameters:
ctx
- the parse tree
-
enterPackageDeclaration
void enterPackageDeclaration(JavaParser.PackageDeclarationContext ctx)
Enter a parse tree produced byJavaParser.packageDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitPackageDeclaration
void exitPackageDeclaration(JavaParser.PackageDeclarationContext ctx)
Exit a parse tree produced byJavaParser.packageDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterImportDeclaration
void enterImportDeclaration(JavaParser.ImportDeclarationContext ctx)
Enter a parse tree produced byJavaParser.importDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitImportDeclaration
void exitImportDeclaration(JavaParser.ImportDeclarationContext ctx)
Exit a parse tree produced byJavaParser.importDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterTypeDeclaration
void enterTypeDeclaration(JavaParser.TypeDeclarationContext ctx)
Enter a parse tree produced byJavaParser.typeDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitTypeDeclaration
void exitTypeDeclaration(JavaParser.TypeDeclarationContext ctx)
Exit a parse tree produced byJavaParser.typeDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterModifier
void enterModifier(JavaParser.ModifierContext ctx)
Enter a parse tree produced byJavaParser.modifier()
.- Parameters:
ctx
- the parse tree
-
exitModifier
void exitModifier(JavaParser.ModifierContext ctx)
Exit a parse tree produced byJavaParser.modifier()
.- Parameters:
ctx
- the parse tree
-
enterClassOrInterfaceModifier
void enterClassOrInterfaceModifier(JavaParser.ClassOrInterfaceModifierContext ctx)
Enter a parse tree produced byJavaParser.classOrInterfaceModifier()
.- Parameters:
ctx
- the parse tree
-
exitClassOrInterfaceModifier
void exitClassOrInterfaceModifier(JavaParser.ClassOrInterfaceModifierContext ctx)
Exit a parse tree produced byJavaParser.classOrInterfaceModifier()
.- Parameters:
ctx
- the parse tree
-
enterVariableModifier
void enterVariableModifier(JavaParser.VariableModifierContext ctx)
Enter a parse tree produced byJavaParser.variableModifier()
.- Parameters:
ctx
- the parse tree
-
exitVariableModifier
void exitVariableModifier(JavaParser.VariableModifierContext ctx)
Exit a parse tree produced byJavaParser.variableModifier()
.- Parameters:
ctx
- the parse tree
-
enterClassDeclaration
void enterClassDeclaration(JavaParser.ClassDeclarationContext ctx)
Enter a parse tree produced byJavaParser.classDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitClassDeclaration
void exitClassDeclaration(JavaParser.ClassDeclarationContext ctx)
Exit a parse tree produced byJavaParser.classDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterTypeParameters
void enterTypeParameters(JavaParser.TypeParametersContext ctx)
Enter a parse tree produced byJavaParser.typeParameters()
.- Parameters:
ctx
- the parse tree
-
exitTypeParameters
void exitTypeParameters(JavaParser.TypeParametersContext ctx)
Exit a parse tree produced byJavaParser.typeParameters()
.- Parameters:
ctx
- the parse tree
-
enterTypeParameter
void enterTypeParameter(JavaParser.TypeParameterContext ctx)
Enter a parse tree produced byJavaParser.typeParameter()
.- Parameters:
ctx
- the parse tree
-
exitTypeParameter
void exitTypeParameter(JavaParser.TypeParameterContext ctx)
Exit a parse tree produced byJavaParser.typeParameter()
.- Parameters:
ctx
- the parse tree
-
enterTypeBound
void enterTypeBound(JavaParser.TypeBoundContext ctx)
Enter a parse tree produced byJavaParser.typeBound()
.- Parameters:
ctx
- the parse tree
-
exitTypeBound
void exitTypeBound(JavaParser.TypeBoundContext ctx)
Exit a parse tree produced byJavaParser.typeBound()
.- Parameters:
ctx
- the parse tree
-
enterEnumDeclaration
void enterEnumDeclaration(JavaParser.EnumDeclarationContext ctx)
Enter a parse tree produced byJavaParser.enumDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitEnumDeclaration
void exitEnumDeclaration(JavaParser.EnumDeclarationContext ctx)
Exit a parse tree produced byJavaParser.enumDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterEnumConstants
void enterEnumConstants(JavaParser.EnumConstantsContext ctx)
Enter a parse tree produced byJavaParser.enumConstants()
.- Parameters:
ctx
- the parse tree
-
exitEnumConstants
void exitEnumConstants(JavaParser.EnumConstantsContext ctx)
Exit a parse tree produced byJavaParser.enumConstants()
.- Parameters:
ctx
- the parse tree
-
enterEnumConstant
void enterEnumConstant(JavaParser.EnumConstantContext ctx)
Enter a parse tree produced byJavaParser.enumConstant()
.- Parameters:
ctx
- the parse tree
-
exitEnumConstant
void exitEnumConstant(JavaParser.EnumConstantContext ctx)
Exit a parse tree produced byJavaParser.enumConstant()
.- Parameters:
ctx
- the parse tree
-
enterEnumBodyDeclarations
void enterEnumBodyDeclarations(JavaParser.EnumBodyDeclarationsContext ctx)
Enter a parse tree produced byJavaParser.enumBodyDeclarations()
.- Parameters:
ctx
- the parse tree
-
exitEnumBodyDeclarations
void exitEnumBodyDeclarations(JavaParser.EnumBodyDeclarationsContext ctx)
Exit a parse tree produced byJavaParser.enumBodyDeclarations()
.- Parameters:
ctx
- the parse tree
-
enterInterfaceDeclaration
void enterInterfaceDeclaration(JavaParser.InterfaceDeclarationContext ctx)
Enter a parse tree produced byJavaParser.interfaceDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitInterfaceDeclaration
void exitInterfaceDeclaration(JavaParser.InterfaceDeclarationContext ctx)
Exit a parse tree produced byJavaParser.interfaceDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterClassBody
void enterClassBody(JavaParser.ClassBodyContext ctx)
Enter a parse tree produced byJavaParser.classBody()
.- Parameters:
ctx
- the parse tree
-
exitClassBody
void exitClassBody(JavaParser.ClassBodyContext ctx)
Exit a parse tree produced byJavaParser.classBody()
.- Parameters:
ctx
- the parse tree
-
enterInterfaceBody
void enterInterfaceBody(JavaParser.InterfaceBodyContext ctx)
Enter a parse tree produced byJavaParser.interfaceBody()
.- Parameters:
ctx
- the parse tree
-
exitInterfaceBody
void exitInterfaceBody(JavaParser.InterfaceBodyContext ctx)
Exit a parse tree produced byJavaParser.interfaceBody()
.- Parameters:
ctx
- the parse tree
-
enterClassBodyDeclaration
void enterClassBodyDeclaration(JavaParser.ClassBodyDeclarationContext ctx)
Enter a parse tree produced byJavaParser.classBodyDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitClassBodyDeclaration
void exitClassBodyDeclaration(JavaParser.ClassBodyDeclarationContext ctx)
Exit a parse tree produced byJavaParser.classBodyDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterMemberDeclaration
void enterMemberDeclaration(JavaParser.MemberDeclarationContext ctx)
Enter a parse tree produced byJavaParser.memberDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitMemberDeclaration
void exitMemberDeclaration(JavaParser.MemberDeclarationContext ctx)
Exit a parse tree produced byJavaParser.memberDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterMethodDeclaration
void enterMethodDeclaration(JavaParser.MethodDeclarationContext ctx)
Enter a parse tree produced byJavaParser.methodDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitMethodDeclaration
void exitMethodDeclaration(JavaParser.MethodDeclarationContext ctx)
Exit a parse tree produced byJavaParser.methodDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterMethodBody
void enterMethodBody(JavaParser.MethodBodyContext ctx)
Enter a parse tree produced byJavaParser.methodBody()
.- Parameters:
ctx
- the parse tree
-
exitMethodBody
void exitMethodBody(JavaParser.MethodBodyContext ctx)
Exit a parse tree produced byJavaParser.methodBody()
.- Parameters:
ctx
- the parse tree
-
enterTypeTypeOrVoid
void enterTypeTypeOrVoid(JavaParser.TypeTypeOrVoidContext ctx)
Enter a parse tree produced byJavaParser.typeTypeOrVoid()
.- Parameters:
ctx
- the parse tree
-
exitTypeTypeOrVoid
void exitTypeTypeOrVoid(JavaParser.TypeTypeOrVoidContext ctx)
Exit a parse tree produced byJavaParser.typeTypeOrVoid()
.- Parameters:
ctx
- the parse tree
-
enterGenericMethodDeclaration
void enterGenericMethodDeclaration(JavaParser.GenericMethodDeclarationContext ctx)
Enter a parse tree produced byJavaParser.genericMethodDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitGenericMethodDeclaration
void exitGenericMethodDeclaration(JavaParser.GenericMethodDeclarationContext ctx)
Exit a parse tree produced byJavaParser.genericMethodDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterGenericConstructorDeclaration
void enterGenericConstructorDeclaration(JavaParser.GenericConstructorDeclarationContext ctx)
Enter a parse tree produced byJavaParser.genericConstructorDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitGenericConstructorDeclaration
void exitGenericConstructorDeclaration(JavaParser.GenericConstructorDeclarationContext ctx)
Exit a parse tree produced byJavaParser.genericConstructorDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterConstructorDeclaration
void enterConstructorDeclaration(JavaParser.ConstructorDeclarationContext ctx)
Enter a parse tree produced byJavaParser.constructorDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitConstructorDeclaration
void exitConstructorDeclaration(JavaParser.ConstructorDeclarationContext ctx)
Exit a parse tree produced byJavaParser.constructorDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterFieldDeclaration
void enterFieldDeclaration(JavaParser.FieldDeclarationContext ctx)
Enter a parse tree produced byJavaParser.fieldDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitFieldDeclaration
void exitFieldDeclaration(JavaParser.FieldDeclarationContext ctx)
Exit a parse tree produced byJavaParser.fieldDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterInterfaceBodyDeclaration
void enterInterfaceBodyDeclaration(JavaParser.InterfaceBodyDeclarationContext ctx)
Enter a parse tree produced byJavaParser.interfaceBodyDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitInterfaceBodyDeclaration
void exitInterfaceBodyDeclaration(JavaParser.InterfaceBodyDeclarationContext ctx)
Exit a parse tree produced byJavaParser.interfaceBodyDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterInterfaceMemberDeclaration
void enterInterfaceMemberDeclaration(JavaParser.InterfaceMemberDeclarationContext ctx)
Enter a parse tree produced byJavaParser.interfaceMemberDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitInterfaceMemberDeclaration
void exitInterfaceMemberDeclaration(JavaParser.InterfaceMemberDeclarationContext ctx)
Exit a parse tree produced byJavaParser.interfaceMemberDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterConstDeclaration
void enterConstDeclaration(JavaParser.ConstDeclarationContext ctx)
Enter a parse tree produced byJavaParser.constDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitConstDeclaration
void exitConstDeclaration(JavaParser.ConstDeclarationContext ctx)
Exit a parse tree produced byJavaParser.constDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterConstantDeclarator
void enterConstantDeclarator(JavaParser.ConstantDeclaratorContext ctx)
Enter a parse tree produced byJavaParser.constantDeclarator()
.- Parameters:
ctx
- the parse tree
-
exitConstantDeclarator
void exitConstantDeclarator(JavaParser.ConstantDeclaratorContext ctx)
Exit a parse tree produced byJavaParser.constantDeclarator()
.- Parameters:
ctx
- the parse tree
-
enterInterfaceMethodDeclaration
void enterInterfaceMethodDeclaration(JavaParser.InterfaceMethodDeclarationContext ctx)
Enter a parse tree produced byJavaParser.interfaceMethodDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitInterfaceMethodDeclaration
void exitInterfaceMethodDeclaration(JavaParser.InterfaceMethodDeclarationContext ctx)
Exit a parse tree produced byJavaParser.interfaceMethodDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterInterfaceMethodModifier
void enterInterfaceMethodModifier(JavaParser.InterfaceMethodModifierContext ctx)
Enter a parse tree produced byJavaParser.interfaceMethodModifier()
.- Parameters:
ctx
- the parse tree
-
exitInterfaceMethodModifier
void exitInterfaceMethodModifier(JavaParser.InterfaceMethodModifierContext ctx)
Exit a parse tree produced byJavaParser.interfaceMethodModifier()
.- Parameters:
ctx
- the parse tree
-
enterGenericInterfaceMethodDeclaration
void enterGenericInterfaceMethodDeclaration(JavaParser.GenericInterfaceMethodDeclarationContext ctx)
Enter a parse tree produced byJavaParser.genericInterfaceMethodDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitGenericInterfaceMethodDeclaration
void exitGenericInterfaceMethodDeclaration(JavaParser.GenericInterfaceMethodDeclarationContext ctx)
Exit a parse tree produced byJavaParser.genericInterfaceMethodDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterVariableDeclarators
void enterVariableDeclarators(JavaParser.VariableDeclaratorsContext ctx)
Enter a parse tree produced byJavaParser.variableDeclarators()
.- Parameters:
ctx
- the parse tree
-
exitVariableDeclarators
void exitVariableDeclarators(JavaParser.VariableDeclaratorsContext ctx)
Exit a parse tree produced byJavaParser.variableDeclarators()
.- Parameters:
ctx
- the parse tree
-
enterVariableDeclarator
void enterVariableDeclarator(JavaParser.VariableDeclaratorContext ctx)
Enter a parse tree produced byJavaParser.variableDeclarator()
.- Parameters:
ctx
- the parse tree
-
exitVariableDeclarator
void exitVariableDeclarator(JavaParser.VariableDeclaratorContext ctx)
Exit a parse tree produced byJavaParser.variableDeclarator()
.- Parameters:
ctx
- the parse tree
-
enterVariableDeclaratorId
void enterVariableDeclaratorId(JavaParser.VariableDeclaratorIdContext ctx)
Enter a parse tree produced byJavaParser.variableDeclaratorId()
.- Parameters:
ctx
- the parse tree
-
exitVariableDeclaratorId
void exitVariableDeclaratorId(JavaParser.VariableDeclaratorIdContext ctx)
Exit a parse tree produced byJavaParser.variableDeclaratorId()
.- Parameters:
ctx
- the parse tree
-
enterVariableInitializer
void enterVariableInitializer(JavaParser.VariableInitializerContext ctx)
Enter a parse tree produced byJavaParser.variableInitializer()
.- Parameters:
ctx
- the parse tree
-
exitVariableInitializer
void exitVariableInitializer(JavaParser.VariableInitializerContext ctx)
Exit a parse tree produced byJavaParser.variableInitializer()
.- Parameters:
ctx
- the parse tree
-
enterArrayInitializer
void enterArrayInitializer(JavaParser.ArrayInitializerContext ctx)
Enter a parse tree produced byJavaParser.arrayInitializer()
.- Parameters:
ctx
- the parse tree
-
exitArrayInitializer
void exitArrayInitializer(JavaParser.ArrayInitializerContext ctx)
Exit a parse tree produced byJavaParser.arrayInitializer()
.- Parameters:
ctx
- the parse tree
-
enterClassOrInterfaceType
void enterClassOrInterfaceType(JavaParser.ClassOrInterfaceTypeContext ctx)
Enter a parse tree produced byJavaParser.classOrInterfaceType()
.- Parameters:
ctx
- the parse tree
-
exitClassOrInterfaceType
void exitClassOrInterfaceType(JavaParser.ClassOrInterfaceTypeContext ctx)
Exit a parse tree produced byJavaParser.classOrInterfaceType()
.- Parameters:
ctx
- the parse tree
-
enterTypeArgument
void enterTypeArgument(JavaParser.TypeArgumentContext ctx)
Enter a parse tree produced byJavaParser.typeArgument()
.- Parameters:
ctx
- the parse tree
-
exitTypeArgument
void exitTypeArgument(JavaParser.TypeArgumentContext ctx)
Exit a parse tree produced byJavaParser.typeArgument()
.- Parameters:
ctx
- the parse tree
-
enterQualifiedNameList
void enterQualifiedNameList(JavaParser.QualifiedNameListContext ctx)
Enter a parse tree produced byJavaParser.qualifiedNameList()
.- Parameters:
ctx
- the parse tree
-
exitQualifiedNameList
void exitQualifiedNameList(JavaParser.QualifiedNameListContext ctx)
Exit a parse tree produced byJavaParser.qualifiedNameList()
.- Parameters:
ctx
- the parse tree
-
enterFormalParameters
void enterFormalParameters(JavaParser.FormalParametersContext ctx)
Enter a parse tree produced byJavaParser.formalParameters()
.- Parameters:
ctx
- the parse tree
-
exitFormalParameters
void exitFormalParameters(JavaParser.FormalParametersContext ctx)
Exit a parse tree produced byJavaParser.formalParameters()
.- Parameters:
ctx
- the parse tree
-
enterFormalParameterList
void enterFormalParameterList(JavaParser.FormalParameterListContext ctx)
Enter a parse tree produced byJavaParser.formalParameterList()
.- Parameters:
ctx
- the parse tree
-
exitFormalParameterList
void exitFormalParameterList(JavaParser.FormalParameterListContext ctx)
Exit a parse tree produced byJavaParser.formalParameterList()
.- Parameters:
ctx
- the parse tree
-
enterFormalParameter
void enterFormalParameter(JavaParser.FormalParameterContext ctx)
Enter a parse tree produced byJavaParser.formalParameter()
.- Parameters:
ctx
- the parse tree
-
exitFormalParameter
void exitFormalParameter(JavaParser.FormalParameterContext ctx)
Exit a parse tree produced byJavaParser.formalParameter()
.- Parameters:
ctx
- the parse tree
-
enterLastFormalParameter
void enterLastFormalParameter(JavaParser.LastFormalParameterContext ctx)
Enter a parse tree produced byJavaParser.lastFormalParameter()
.- Parameters:
ctx
- the parse tree
-
exitLastFormalParameter
void exitLastFormalParameter(JavaParser.LastFormalParameterContext ctx)
Exit a parse tree produced byJavaParser.lastFormalParameter()
.- Parameters:
ctx
- the parse tree
-
enterQualifiedName
void enterQualifiedName(JavaParser.QualifiedNameContext ctx)
Enter a parse tree produced byJavaParser.qualifiedName()
.- Parameters:
ctx
- the parse tree
-
exitQualifiedName
void exitQualifiedName(JavaParser.QualifiedNameContext ctx)
Exit a parse tree produced byJavaParser.qualifiedName()
.- Parameters:
ctx
- the parse tree
-
enterLiteral
void enterLiteral(JavaParser.LiteralContext ctx)
Enter a parse tree produced byJavaParser.literal()
.- Parameters:
ctx
- the parse tree
-
exitLiteral
void exitLiteral(JavaParser.LiteralContext ctx)
Exit a parse tree produced byJavaParser.literal()
.- Parameters:
ctx
- the parse tree
-
enterIntegerLiteral
void enterIntegerLiteral(JavaParser.IntegerLiteralContext ctx)
Enter a parse tree produced byJavaParser.integerLiteral()
.- Parameters:
ctx
- the parse tree
-
exitIntegerLiteral
void exitIntegerLiteral(JavaParser.IntegerLiteralContext ctx)
Exit a parse tree produced byJavaParser.integerLiteral()
.- Parameters:
ctx
- the parse tree
-
enterFloatLiteral
void enterFloatLiteral(JavaParser.FloatLiteralContext ctx)
Enter a parse tree produced byJavaParser.floatLiteral()
.- Parameters:
ctx
- the parse tree
-
exitFloatLiteral
void exitFloatLiteral(JavaParser.FloatLiteralContext ctx)
Exit a parse tree produced byJavaParser.floatLiteral()
.- Parameters:
ctx
- the parse tree
-
enterAnnotation
void enterAnnotation(JavaParser.AnnotationContext ctx)
Enter a parse tree produced byJavaParser.annotation()
.- Parameters:
ctx
- the parse tree
-
exitAnnotation
void exitAnnotation(JavaParser.AnnotationContext ctx)
Exit a parse tree produced byJavaParser.annotation()
.- Parameters:
ctx
- the parse tree
-
enterElementValuePairs
void enterElementValuePairs(JavaParser.ElementValuePairsContext ctx)
Enter a parse tree produced byJavaParser.elementValuePairs()
.- Parameters:
ctx
- the parse tree
-
exitElementValuePairs
void exitElementValuePairs(JavaParser.ElementValuePairsContext ctx)
Exit a parse tree produced byJavaParser.elementValuePairs()
.- Parameters:
ctx
- the parse tree
-
enterElementValuePair
void enterElementValuePair(JavaParser.ElementValuePairContext ctx)
Enter a parse tree produced byJavaParser.elementValuePair()
.- Parameters:
ctx
- the parse tree
-
exitElementValuePair
void exitElementValuePair(JavaParser.ElementValuePairContext ctx)
Exit a parse tree produced byJavaParser.elementValuePair()
.- Parameters:
ctx
- the parse tree
-
enterElementValue
void enterElementValue(JavaParser.ElementValueContext ctx)
Enter a parse tree produced byJavaParser.elementValue()
.- Parameters:
ctx
- the parse tree
-
exitElementValue
void exitElementValue(JavaParser.ElementValueContext ctx)
Exit a parse tree produced byJavaParser.elementValue()
.- Parameters:
ctx
- the parse tree
-
enterElementValueArrayInitializer
void enterElementValueArrayInitializer(JavaParser.ElementValueArrayInitializerContext ctx)
Enter a parse tree produced byJavaParser.elementValueArrayInitializer()
.- Parameters:
ctx
- the parse tree
-
exitElementValueArrayInitializer
void exitElementValueArrayInitializer(JavaParser.ElementValueArrayInitializerContext ctx)
Exit a parse tree produced byJavaParser.elementValueArrayInitializer()
.- Parameters:
ctx
- the parse tree
-
enterAnnotationTypeDeclaration
void enterAnnotationTypeDeclaration(JavaParser.AnnotationTypeDeclarationContext ctx)
Enter a parse tree produced byJavaParser.annotationTypeDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitAnnotationTypeDeclaration
void exitAnnotationTypeDeclaration(JavaParser.AnnotationTypeDeclarationContext ctx)
Exit a parse tree produced byJavaParser.annotationTypeDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterAnnotationTypeBody
void enterAnnotationTypeBody(JavaParser.AnnotationTypeBodyContext ctx)
Enter a parse tree produced byJavaParser.annotationTypeBody()
.- Parameters:
ctx
- the parse tree
-
exitAnnotationTypeBody
void exitAnnotationTypeBody(JavaParser.AnnotationTypeBodyContext ctx)
Exit a parse tree produced byJavaParser.annotationTypeBody()
.- Parameters:
ctx
- the parse tree
-
enterAnnotationTypeElementDeclaration
void enterAnnotationTypeElementDeclaration(JavaParser.AnnotationTypeElementDeclarationContext ctx)
Enter a parse tree produced byJavaParser.annotationTypeElementDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitAnnotationTypeElementDeclaration
void exitAnnotationTypeElementDeclaration(JavaParser.AnnotationTypeElementDeclarationContext ctx)
Exit a parse tree produced byJavaParser.annotationTypeElementDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterAnnotationTypeElementRest
void enterAnnotationTypeElementRest(JavaParser.AnnotationTypeElementRestContext ctx)
Enter a parse tree produced byJavaParser.annotationTypeElementRest()
.- Parameters:
ctx
- the parse tree
-
exitAnnotationTypeElementRest
void exitAnnotationTypeElementRest(JavaParser.AnnotationTypeElementRestContext ctx)
Exit a parse tree produced byJavaParser.annotationTypeElementRest()
.- Parameters:
ctx
- the parse tree
-
enterAnnotationMethodOrConstantRest
void enterAnnotationMethodOrConstantRest(JavaParser.AnnotationMethodOrConstantRestContext ctx)
Enter a parse tree produced byJavaParser.annotationMethodOrConstantRest()
.- Parameters:
ctx
- the parse tree
-
exitAnnotationMethodOrConstantRest
void exitAnnotationMethodOrConstantRest(JavaParser.AnnotationMethodOrConstantRestContext ctx)
Exit a parse tree produced byJavaParser.annotationMethodOrConstantRest()
.- Parameters:
ctx
- the parse tree
-
enterAnnotationMethodRest
void enterAnnotationMethodRest(JavaParser.AnnotationMethodRestContext ctx)
Enter a parse tree produced byJavaParser.annotationMethodRest()
.- Parameters:
ctx
- the parse tree
-
exitAnnotationMethodRest
void exitAnnotationMethodRest(JavaParser.AnnotationMethodRestContext ctx)
Exit a parse tree produced byJavaParser.annotationMethodRest()
.- Parameters:
ctx
- the parse tree
-
enterAnnotationConstantRest
void enterAnnotationConstantRest(JavaParser.AnnotationConstantRestContext ctx)
Enter a parse tree produced byJavaParser.annotationConstantRest()
.- Parameters:
ctx
- the parse tree
-
exitAnnotationConstantRest
void exitAnnotationConstantRest(JavaParser.AnnotationConstantRestContext ctx)
Exit a parse tree produced byJavaParser.annotationConstantRest()
.- Parameters:
ctx
- the parse tree
-
enterDefaultValue
void enterDefaultValue(JavaParser.DefaultValueContext ctx)
Enter a parse tree produced byJavaParser.defaultValue()
.- Parameters:
ctx
- the parse tree
-
exitDefaultValue
void exitDefaultValue(JavaParser.DefaultValueContext ctx)
Exit a parse tree produced byJavaParser.defaultValue()
.- Parameters:
ctx
- the parse tree
-
enterBlock
void enterBlock(JavaParser.BlockContext ctx)
Enter a parse tree produced byJavaParser.block()
.- Parameters:
ctx
- the parse tree
-
exitBlock
void exitBlock(JavaParser.BlockContext ctx)
Exit a parse tree produced byJavaParser.block()
.- Parameters:
ctx
- the parse tree
-
enterBlockStatement
void enterBlockStatement(JavaParser.BlockStatementContext ctx)
Enter a parse tree produced byJavaParser.blockStatement()
.- Parameters:
ctx
- the parse tree
-
exitBlockStatement
void exitBlockStatement(JavaParser.BlockStatementContext ctx)
Exit a parse tree produced byJavaParser.blockStatement()
.- Parameters:
ctx
- the parse tree
-
enterLocalVariableDeclaration
void enterLocalVariableDeclaration(JavaParser.LocalVariableDeclarationContext ctx)
Enter a parse tree produced byJavaParser.localVariableDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitLocalVariableDeclaration
void exitLocalVariableDeclaration(JavaParser.LocalVariableDeclarationContext ctx)
Exit a parse tree produced byJavaParser.localVariableDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterLocalTypeDeclaration
void enterLocalTypeDeclaration(JavaParser.LocalTypeDeclarationContext ctx)
Enter a parse tree produced byJavaParser.localTypeDeclaration()
.- Parameters:
ctx
- the parse tree
-
exitLocalTypeDeclaration
void exitLocalTypeDeclaration(JavaParser.LocalTypeDeclarationContext ctx)
Exit a parse tree produced byJavaParser.localTypeDeclaration()
.- Parameters:
ctx
- the parse tree
-
enterStatement
void enterStatement(JavaParser.StatementContext ctx)
Enter a parse tree produced byJavaParser.statement()
.- Parameters:
ctx
- the parse tree
-
exitStatement
void exitStatement(JavaParser.StatementContext ctx)
Exit a parse tree produced byJavaParser.statement()
.- Parameters:
ctx
- the parse tree
-
enterCatchClause
void enterCatchClause(JavaParser.CatchClauseContext ctx)
Enter a parse tree produced byJavaParser.catchClause()
.- Parameters:
ctx
- the parse tree
-
exitCatchClause
void exitCatchClause(JavaParser.CatchClauseContext ctx)
Exit a parse tree produced byJavaParser.catchClause()
.- Parameters:
ctx
- the parse tree
-
enterCatchType
void enterCatchType(JavaParser.CatchTypeContext ctx)
Enter a parse tree produced byJavaParser.catchType()
.- Parameters:
ctx
- the parse tree
-
exitCatchType
void exitCatchType(JavaParser.CatchTypeContext ctx)
Exit a parse tree produced byJavaParser.catchType()
.- Parameters:
ctx
- the parse tree
-
enterFinallyBlock
void enterFinallyBlock(JavaParser.FinallyBlockContext ctx)
Enter a parse tree produced byJavaParser.finallyBlock()
.- Parameters:
ctx
- the parse tree
-
exitFinallyBlock
void exitFinallyBlock(JavaParser.FinallyBlockContext ctx)
Exit a parse tree produced byJavaParser.finallyBlock()
.- Parameters:
ctx
- the parse tree
-
enterResourceSpecification
void enterResourceSpecification(JavaParser.ResourceSpecificationContext ctx)
Enter a parse tree produced byJavaParser.resourceSpecification()
.- Parameters:
ctx
- the parse tree
-
exitResourceSpecification
void exitResourceSpecification(JavaParser.ResourceSpecificationContext ctx)
Exit a parse tree produced byJavaParser.resourceSpecification()
.- Parameters:
ctx
- the parse tree
-
enterResources
void enterResources(JavaParser.ResourcesContext ctx)
Enter a parse tree produced byJavaParser.resources()
.- Parameters:
ctx
- the parse tree
-
exitResources
void exitResources(JavaParser.ResourcesContext ctx)
Exit a parse tree produced byJavaParser.resources()
.- Parameters:
ctx
- the parse tree
-
enterResource
void enterResource(JavaParser.ResourceContext ctx)
Enter a parse tree produced byJavaParser.resource()
.- Parameters:
ctx
- the parse tree
-
exitResource
void exitResource(JavaParser.ResourceContext ctx)
Exit a parse tree produced byJavaParser.resource()
.- Parameters:
ctx
- the parse tree
-
enterSwitchBlockStatementGroup
void enterSwitchBlockStatementGroup(JavaParser.SwitchBlockStatementGroupContext ctx)
Enter a parse tree produced byJavaParser.switchBlockStatementGroup()
.- Parameters:
ctx
- the parse tree
-
exitSwitchBlockStatementGroup
void exitSwitchBlockStatementGroup(JavaParser.SwitchBlockStatementGroupContext ctx)
Exit a parse tree produced byJavaParser.switchBlockStatementGroup()
.- Parameters:
ctx
- the parse tree
-
enterSwitchLabel
void enterSwitchLabel(JavaParser.SwitchLabelContext ctx)
Enter a parse tree produced byJavaParser.switchLabel()
.- Parameters:
ctx
- the parse tree
-
exitSwitchLabel
void exitSwitchLabel(JavaParser.SwitchLabelContext ctx)
Exit a parse tree produced byJavaParser.switchLabel()
.- Parameters:
ctx
- the parse tree
-
enterForControl
void enterForControl(JavaParser.ForControlContext ctx)
Enter a parse tree produced byJavaParser.forControl()
.- Parameters:
ctx
- the parse tree
-
exitForControl
void exitForControl(JavaParser.ForControlContext ctx)
Exit a parse tree produced byJavaParser.forControl()
.- Parameters:
ctx
- the parse tree
-
enterForInit
void enterForInit(JavaParser.ForInitContext ctx)
Enter a parse tree produced byJavaParser.forInit()
.- Parameters:
ctx
- the parse tree
-
exitForInit
void exitForInit(JavaParser.ForInitContext ctx)
Exit a parse tree produced byJavaParser.forInit()
.- Parameters:
ctx
- the parse tree
-
enterEnhancedForControl
void enterEnhancedForControl(JavaParser.EnhancedForControlContext ctx)
Enter a parse tree produced byJavaParser.enhancedForControl()
.- Parameters:
ctx
- the parse tree
-
exitEnhancedForControl
void exitEnhancedForControl(JavaParser.EnhancedForControlContext ctx)
Exit a parse tree produced byJavaParser.enhancedForControl()
.- Parameters:
ctx
- the parse tree
-
enterParExpression
void enterParExpression(JavaParser.ParExpressionContext ctx)
Enter a parse tree produced byJavaParser.parExpression()
.- Parameters:
ctx
- the parse tree
-
exitParExpression
void exitParExpression(JavaParser.ParExpressionContext ctx)
Exit a parse tree produced byJavaParser.parExpression()
.- Parameters:
ctx
- the parse tree
-
enterExpressionList
void enterExpressionList(JavaParser.ExpressionListContext ctx)
Enter a parse tree produced byJavaParser.expressionList()
.- Parameters:
ctx
- the parse tree
-
exitExpressionList
void exitExpressionList(JavaParser.ExpressionListContext ctx)
Exit a parse tree produced byJavaParser.expressionList()
.- Parameters:
ctx
- the parse tree
-
enterMethodCall
void enterMethodCall(JavaParser.MethodCallContext ctx)
Enter a parse tree produced byJavaParser.methodCall()
.- Parameters:
ctx
- the parse tree
-
exitMethodCall
void exitMethodCall(JavaParser.MethodCallContext ctx)
Exit a parse tree produced byJavaParser.methodCall()
.- Parameters:
ctx
- the parse tree
-
enterConstructorCall
void enterConstructorCall(JavaParser.ConstructorCallContext ctx)
Enter a parse tree produced byJavaParser.constructorCall()
.- Parameters:
ctx
- the parse tree
-
exitConstructorCall
void exitConstructorCall(JavaParser.ConstructorCallContext ctx)
Exit a parse tree produced byJavaParser.constructorCall()
.- Parameters:
ctx
- the parse tree
-
enterExpression
void enterExpression(JavaParser.ExpressionContext ctx)
Enter a parse tree produced byJavaParser.expression()
.- Parameters:
ctx
- the parse tree
-
exitExpression
void exitExpression(JavaParser.ExpressionContext ctx)
Exit a parse tree produced byJavaParser.expression()
.- Parameters:
ctx
- the parse tree
-
enterLambdaExpression
void enterLambdaExpression(JavaParser.LambdaExpressionContext ctx)
Enter a parse tree produced byJavaParser.lambdaExpression()
.- Parameters:
ctx
- the parse tree
-
exitLambdaExpression
void exitLambdaExpression(JavaParser.LambdaExpressionContext ctx)
Exit a parse tree produced byJavaParser.lambdaExpression()
.- Parameters:
ctx
- the parse tree
-
enterLambdaParameters
void enterLambdaParameters(JavaParser.LambdaParametersContext ctx)
Enter a parse tree produced byJavaParser.lambdaParameters()
.- Parameters:
ctx
- the parse tree
-
exitLambdaParameters
void exitLambdaParameters(JavaParser.LambdaParametersContext ctx)
Exit a parse tree produced byJavaParser.lambdaParameters()
.- Parameters:
ctx
- the parse tree
-
enterLambdaBody
void enterLambdaBody(JavaParser.LambdaBodyContext ctx)
Enter a parse tree produced byJavaParser.lambdaBody()
.- Parameters:
ctx
- the parse tree
-
exitLambdaBody
void exitLambdaBody(JavaParser.LambdaBodyContext ctx)
Exit a parse tree produced byJavaParser.lambdaBody()
.- Parameters:
ctx
- the parse tree
-
enterPrimary
void enterPrimary(JavaParser.PrimaryContext ctx)
Enter a parse tree produced byJavaParser.primary()
.- Parameters:
ctx
- the parse tree
-
exitPrimary
void exitPrimary(JavaParser.PrimaryContext ctx)
Exit a parse tree produced byJavaParser.primary()
.- Parameters:
ctx
- the parse tree
-
enterClassType
void enterClassType(JavaParser.ClassTypeContext ctx)
Enter a parse tree produced byJavaParser.classType()
.- Parameters:
ctx
- the parse tree
-
exitClassType
void exitClassType(JavaParser.ClassTypeContext ctx)
Exit a parse tree produced byJavaParser.classType()
.- Parameters:
ctx
- the parse tree
-
enterCreator
void enterCreator(JavaParser.CreatorContext ctx)
Enter a parse tree produced byJavaParser.creator()
.- Parameters:
ctx
- the parse tree
-
exitCreator
void exitCreator(JavaParser.CreatorContext ctx)
Exit a parse tree produced byJavaParser.creator()
.- Parameters:
ctx
- the parse tree
-
enterCreatedName
void enterCreatedName(JavaParser.CreatedNameContext ctx)
Enter a parse tree produced byJavaParser.createdName()
.- Parameters:
ctx
- the parse tree
-
exitCreatedName
void exitCreatedName(JavaParser.CreatedNameContext ctx)
Exit a parse tree produced byJavaParser.createdName()
.- Parameters:
ctx
- the parse tree
-
enterInnerCreator
void enterInnerCreator(JavaParser.InnerCreatorContext ctx)
Enter a parse tree produced byJavaParser.innerCreator()
.- Parameters:
ctx
- the parse tree
-
exitInnerCreator
void exitInnerCreator(JavaParser.InnerCreatorContext ctx)
Exit a parse tree produced byJavaParser.innerCreator()
.- Parameters:
ctx
- the parse tree
-
enterArrayCreatorRest
void enterArrayCreatorRest(JavaParser.ArrayCreatorRestContext ctx)
Enter a parse tree produced byJavaParser.arrayCreatorRest()
.- Parameters:
ctx
- the parse tree
-
exitArrayCreatorRest
void exitArrayCreatorRest(JavaParser.ArrayCreatorRestContext ctx)
Exit a parse tree produced byJavaParser.arrayCreatorRest()
.- Parameters:
ctx
- the parse tree
-
enterClassCreatorRest
void enterClassCreatorRest(JavaParser.ClassCreatorRestContext ctx)
Enter a parse tree produced byJavaParser.classCreatorRest()
.- Parameters:
ctx
- the parse tree
-
exitClassCreatorRest
void exitClassCreatorRest(JavaParser.ClassCreatorRestContext ctx)
Exit a parse tree produced byJavaParser.classCreatorRest()
.- Parameters:
ctx
- the parse tree
-
enterExplicitGenericInvocation
void enterExplicitGenericInvocation(JavaParser.ExplicitGenericInvocationContext ctx)
Enter a parse tree produced byJavaParser.explicitGenericInvocation()
.- Parameters:
ctx
- the parse tree
-
exitExplicitGenericInvocation
void exitExplicitGenericInvocation(JavaParser.ExplicitGenericInvocationContext ctx)
Exit a parse tree produced byJavaParser.explicitGenericInvocation()
.- Parameters:
ctx
- the parse tree
-
enterTypeArgumentsOrDiamond
void enterTypeArgumentsOrDiamond(JavaParser.TypeArgumentsOrDiamondContext ctx)
Enter a parse tree produced byJavaParser.typeArgumentsOrDiamond()
.- Parameters:
ctx
- the parse tree
-
exitTypeArgumentsOrDiamond
void exitTypeArgumentsOrDiamond(JavaParser.TypeArgumentsOrDiamondContext ctx)
Exit a parse tree produced byJavaParser.typeArgumentsOrDiamond()
.- Parameters:
ctx
- the parse tree
-
enterNonWildcardTypeArgumentsOrDiamond
void enterNonWildcardTypeArgumentsOrDiamond(JavaParser.NonWildcardTypeArgumentsOrDiamondContext ctx)
Enter a parse tree produced byJavaParser.nonWildcardTypeArgumentsOrDiamond()
.- Parameters:
ctx
- the parse tree
-
exitNonWildcardTypeArgumentsOrDiamond
void exitNonWildcardTypeArgumentsOrDiamond(JavaParser.NonWildcardTypeArgumentsOrDiamondContext ctx)
Exit a parse tree produced byJavaParser.nonWildcardTypeArgumentsOrDiamond()
.- Parameters:
ctx
- the parse tree
-
enterNonWildcardTypeArguments
void enterNonWildcardTypeArguments(JavaParser.NonWildcardTypeArgumentsContext ctx)
Enter a parse tree produced byJavaParser.nonWildcardTypeArguments()
.- Parameters:
ctx
- the parse tree
-
exitNonWildcardTypeArguments
void exitNonWildcardTypeArguments(JavaParser.NonWildcardTypeArgumentsContext ctx)
Exit a parse tree produced byJavaParser.nonWildcardTypeArguments()
.- Parameters:
ctx
- the parse tree
-
enterTypeList
void enterTypeList(JavaParser.TypeListContext ctx)
Enter a parse tree produced byJavaParser.typeList()
.- Parameters:
ctx
- the parse tree
-
exitTypeList
void exitTypeList(JavaParser.TypeListContext ctx)
Exit a parse tree produced byJavaParser.typeList()
.- Parameters:
ctx
- the parse tree
-
enterTypeType
void enterTypeType(JavaParser.TypeTypeContext ctx)
Enter a parse tree produced byJavaParser.typeType()
.- Parameters:
ctx
- the parse tree
-
exitTypeType
void exitTypeType(JavaParser.TypeTypeContext ctx)
Exit a parse tree produced byJavaParser.typeType()
.- Parameters:
ctx
- the parse tree
-
enterPrimitiveType
void enterPrimitiveType(JavaParser.PrimitiveTypeContext ctx)
Enter a parse tree produced byJavaParser.primitiveType()
.- Parameters:
ctx
- the parse tree
-
exitPrimitiveType
void exitPrimitiveType(JavaParser.PrimitiveTypeContext ctx)
Exit a parse tree produced byJavaParser.primitiveType()
.- Parameters:
ctx
- the parse tree
-
enterTypeArguments
void enterTypeArguments(JavaParser.TypeArgumentsContext ctx)
Enter a parse tree produced byJavaParser.typeArguments()
.- Parameters:
ctx
- the parse tree
-
exitTypeArguments
void exitTypeArguments(JavaParser.TypeArgumentsContext ctx)
Exit a parse tree produced byJavaParser.typeArguments()
.- Parameters:
ctx
- the parse tree
-
enterSuperSuffix
void enterSuperSuffix(JavaParser.SuperSuffixContext ctx)
Enter a parse tree produced byJavaParser.superSuffix()
.- Parameters:
ctx
- the parse tree
-
exitSuperSuffix
void exitSuperSuffix(JavaParser.SuperSuffixContext ctx)
Exit a parse tree produced byJavaParser.superSuffix()
.- Parameters:
ctx
- the parse tree
-
enterExplicitGenericInvocationSuffix
void enterExplicitGenericInvocationSuffix(JavaParser.ExplicitGenericInvocationSuffixContext ctx)
Enter a parse tree produced byJavaParser.explicitGenericInvocationSuffix()
.- Parameters:
ctx
- the parse tree
-
exitExplicitGenericInvocationSuffix
void exitExplicitGenericInvocationSuffix(JavaParser.ExplicitGenericInvocationSuffixContext ctx)
Exit a parse tree produced byJavaParser.explicitGenericInvocationSuffix()
.- Parameters:
ctx
- the parse tree
-
enterArguments
void enterArguments(JavaParser.ArgumentsContext ctx)
Enter a parse tree produced byJavaParser.arguments()
.- Parameters:
ctx
- the parse tree
-
exitArguments
void exitArguments(JavaParser.ArgumentsContext ctx)
Exit a parse tree produced byJavaParser.arguments()
.- Parameters:
ctx
- the parse tree
-
-