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