Interface SimpleListener
-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
SimpleBaseListener
public interface SimpleListener extends org.antlr.v4.runtime.tree.ParseTreeListenerThis interface defines a complete listener for a parse tree produced bySimpleParser.
-
-
Method Summary
-
-
-
Method Detail
-
enterFile
void enterFile(SimpleParser.FileContext ctx)
Enter a parse tree produced bySimpleParser.file().- Parameters:
ctx- the parse tree
-
exitFile
void exitFile(SimpleParser.FileContext ctx)
Exit a parse tree produced bySimpleParser.file().- Parameters:
ctx- the parse tree
-
enterFileAnnotation
void enterFileAnnotation(SimpleParser.FileAnnotationContext ctx)
Enter a parse tree produced bySimpleParser.fileAnnotation().- Parameters:
ctx- the parse tree
-
exitFileAnnotation
void exitFileAnnotation(SimpleParser.FileAnnotationContext ctx)
Exit a parse tree produced bySimpleParser.fileAnnotation().- Parameters:
ctx- the parse tree
-
enterPackageDeclaration
void enterPackageDeclaration(SimpleParser.PackageDeclarationContext ctx)
Enter a parse tree produced bySimpleParser.packageDeclaration().- Parameters:
ctx- the parse tree
-
exitPackageDeclaration
void exitPackageDeclaration(SimpleParser.PackageDeclarationContext ctx)
Exit a parse tree produced bySimpleParser.packageDeclaration().- Parameters:
ctx- the parse tree
-
enterImportList
void enterImportList(SimpleParser.ImportListContext ctx)
Enter a parse tree produced bySimpleParser.importList().- Parameters:
ctx- the parse tree
-
exitImportList
void exitImportList(SimpleParser.ImportListContext ctx)
Exit a parse tree produced bySimpleParser.importList().- Parameters:
ctx- the parse tree
-
enterImportDeclaration
void enterImportDeclaration(SimpleParser.ImportDeclarationContext ctx)
Enter a parse tree produced bySimpleParser.importDeclaration().- Parameters:
ctx- the parse tree
-
exitImportDeclaration
void exitImportDeclaration(SimpleParser.ImportDeclarationContext ctx)
Exit a parse tree produced bySimpleParser.importDeclaration().- Parameters:
ctx- the parse tree
-
enterQualifiedName
void enterQualifiedName(SimpleParser.QualifiedNameContext ctx)
Enter a parse tree produced bySimpleParser.qualifiedName().- Parameters:
ctx- the parse tree
-
exitQualifiedName
void exitQualifiedName(SimpleParser.QualifiedNameContext ctx)
Exit a parse tree produced bySimpleParser.qualifiedName().- Parameters:
ctx- the parse tree
-
-