Class JavaParserBaseListener
- java.lang.Object
-
- com.autonomousapps.internal.grammar.JavaParserBaseListener
-
- All Implemented Interfaces:
JavaParserListener,org.antlr.v4.runtime.tree.ParseTreeListener
public class JavaParserBaseListener extends java.lang.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:
enterCompilationUnitin 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:
exitCompilationUnitin 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:
enterPackageDeclarationin 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:
exitPackageDeclarationin 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:
enterImportDeclarationin 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:
exitImportDeclarationin 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:
enterTypeDeclarationin 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:
exitTypeDeclarationin 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:
enterModifierin 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:
exitModifierin 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:
enterClassOrInterfaceModifierin 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:
exitClassOrInterfaceModifierin 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:
enterVariableModifierin 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:
exitVariableModifierin 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:
enterClassDeclarationin 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:
exitClassDeclarationin 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:
enterTypeParametersin 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:
exitTypeParametersin 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:
enterTypeParameterin 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:
exitTypeParameterin 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:
enterTypeBoundin 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:
exitTypeBoundin 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:
enterEnumDeclarationin 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:
exitEnumDeclarationin 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:
enterEnumConstantsin 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:
exitEnumConstantsin 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:
enterEnumConstantin 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:
exitEnumConstantin 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:
enterEnumBodyDeclarationsin 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:
exitEnumBodyDeclarationsin 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:
enterInterfaceDeclarationin 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:
exitInterfaceDeclarationin 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:
enterClassBodyin 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:
exitClassBodyin 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:
enterInterfaceBodyin 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:
exitInterfaceBodyin 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:
enterClassBodyDeclarationin 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:
exitClassBodyDeclarationin 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:
enterMemberDeclarationin 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:
exitMemberDeclarationin 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:
enterMethodDeclarationin 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:
exitMethodDeclarationin 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:
enterMethodBodyin 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:
exitMethodBodyin 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:
enterTypeTypeOrVoidin 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:
exitTypeTypeOrVoidin 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:
enterGenericMethodDeclarationin 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:
exitGenericMethodDeclarationin 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:
enterGenericConstructorDeclarationin 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:
exitGenericConstructorDeclarationin 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:
enterConstructorDeclarationin 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:
exitConstructorDeclarationin 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:
enterFieldDeclarationin 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:
exitFieldDeclarationin 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:
enterInterfaceBodyDeclarationin 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:
exitInterfaceBodyDeclarationin 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:
enterInterfaceMemberDeclarationin 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:
exitInterfaceMemberDeclarationin 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:
enterConstDeclarationin 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:
exitConstDeclarationin 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:
enterConstantDeclaratorin 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:
exitConstantDeclaratorin 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:
enterInterfaceMethodDeclarationin 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:
exitInterfaceMethodDeclarationin 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:
enterInterfaceMethodModifierin 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:
exitInterfaceMethodModifierin 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:
enterGenericInterfaceMethodDeclarationin 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:
exitGenericInterfaceMethodDeclarationin 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:
enterVariableDeclaratorsin 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:
exitVariableDeclaratorsin 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:
enterVariableDeclaratorin 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:
exitVariableDeclaratorin 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:
enterVariableDeclaratorIdin 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:
exitVariableDeclaratorIdin 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:
enterVariableInitializerin 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:
exitVariableInitializerin 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:
enterArrayInitializerin 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:
exitArrayInitializerin 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:
enterClassOrInterfaceTypein 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:
exitClassOrInterfaceTypein 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:
enterTypeArgumentin 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:
exitTypeArgumentin 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:
enterQualifiedNameListin 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:
exitQualifiedNameListin 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:
enterFormalParametersin 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:
exitFormalParametersin 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:
enterFormalParameterListin 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:
exitFormalParameterListin 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:
enterFormalParameterin 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:
exitFormalParameterin 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:
enterLastFormalParameterin 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:
exitLastFormalParameterin 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:
enterQualifiedNamein 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:
exitQualifiedNamein 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:
enterLiteralin 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:
exitLiteralin 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:
enterIntegerLiteralin 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:
exitIntegerLiteralin 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:
enterFloatLiteralin 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:
exitFloatLiteralin interfaceJavaParserListener- Parameters:
ctx- the parse tree
-
enterAltAnnotationQualifiedName
public void enterAltAnnotationQualifiedName(JavaParser.AltAnnotationQualifiedNameContext ctx)
Enter a parse tree produced byJavaParser.altAnnotationQualifiedName().The default implementation does nothing.
- Specified by:
enterAltAnnotationQualifiedNamein interfaceJavaParserListener- Parameters:
ctx- the parse tree
-
exitAltAnnotationQualifiedName
public void exitAltAnnotationQualifiedName(JavaParser.AltAnnotationQualifiedNameContext ctx)
Exit a parse tree produced byJavaParser.altAnnotationQualifiedName().The default implementation does nothing.
- Specified by:
exitAltAnnotationQualifiedNamein 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:
enterAnnotationin 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:
exitAnnotationin 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:
enterElementValuePairsin 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:
exitElementValuePairsin 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:
enterElementValuePairin 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:
exitElementValuePairin 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:
enterElementValuein 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:
exitElementValuein 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:
enterElementValueArrayInitializerin 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:
exitElementValueArrayInitializerin 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:
enterAnnotationTypeDeclarationin 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:
exitAnnotationTypeDeclarationin 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:
enterAnnotationTypeBodyin 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:
exitAnnotationTypeBodyin 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:
enterAnnotationTypeElementDeclarationin 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:
exitAnnotationTypeElementDeclarationin 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:
enterAnnotationTypeElementRestin 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:
exitAnnotationTypeElementRestin 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:
enterAnnotationMethodOrConstantRestin 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:
exitAnnotationMethodOrConstantRestin 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:
enterAnnotationMethodRestin 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:
exitAnnotationMethodRestin 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:
enterAnnotationConstantRestin 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:
exitAnnotationConstantRestin 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:
enterDefaultValuein 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:
exitDefaultValuein 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:
enterBlockin 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:
exitBlockin 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:
enterBlockStatementin 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:
exitBlockStatementin 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:
enterLocalVariableDeclarationin 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:
exitLocalVariableDeclarationin 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:
enterLocalTypeDeclarationin 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:
exitLocalTypeDeclarationin 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:
enterStatementin 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:
exitStatementin 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:
enterCatchClausein 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:
exitCatchClausein 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:
enterCatchTypein 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:
exitCatchTypein 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:
enterFinallyBlockin 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:
exitFinallyBlockin 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:
enterResourceSpecificationin 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:
exitResourceSpecificationin 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:
enterResourcesin 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:
exitResourcesin 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:
enterResourcein 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:
exitResourcein 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:
enterSwitchBlockStatementGroupin 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:
exitSwitchBlockStatementGroupin 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:
enterSwitchLabelin 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:
exitSwitchLabelin 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:
enterForControlin 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:
exitForControlin 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:
enterForInitin 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:
exitForInitin 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:
enterEnhancedForControlin 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:
exitEnhancedForControlin 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:
enterParExpressionin 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:
exitParExpressionin 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:
enterExpressionListin 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:
exitExpressionListin 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:
enterMethodCallin 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:
exitMethodCallin 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:
enterExpressionin 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:
exitExpressionin 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:
enterLambdaExpressionin 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:
exitLambdaExpressionin 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:
enterLambdaParametersin 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:
exitLambdaParametersin 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:
enterLambdaBodyin 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:
exitLambdaBodyin 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:
enterPrimaryin 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:
exitPrimaryin 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:
enterClassTypein 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:
exitClassTypein 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:
enterCreatorin 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:
exitCreatorin 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:
enterCreatedNamein 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:
exitCreatedNamein 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:
enterInnerCreatorin 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:
exitInnerCreatorin 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:
enterArrayCreatorRestin 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:
exitArrayCreatorRestin 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:
enterClassCreatorRestin 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:
exitClassCreatorRestin 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:
enterExplicitGenericInvocationin 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:
exitExplicitGenericInvocationin 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:
enterTypeArgumentsOrDiamondin 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:
exitTypeArgumentsOrDiamondin 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:
enterNonWildcardTypeArgumentsOrDiamondin 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:
exitNonWildcardTypeArgumentsOrDiamondin 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:
enterNonWildcardTypeArgumentsin 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:
exitNonWildcardTypeArgumentsin 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:
enterTypeListin 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:
exitTypeListin 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:
enterTypeTypein 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:
exitTypeTypein 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:
enterPrimitiveTypein 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:
exitPrimitiveTypein 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:
enterTypeArgumentsin 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:
exitTypeArgumentsin 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:
enterSuperSuffixin 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:
exitSuperSuffixin 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:
enterExplicitGenericInvocationSuffixin 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:
exitExplicitGenericInvocationSuffixin 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:
enterArgumentsin 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:
exitArgumentsin interfaceJavaParserListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-