-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
GmlBaseListener,GmlEventDrivenImporter.NotifyGmlListener
interface GmlListener extends org.antlr.v4.runtime.tree.ParseTreeListenerThis interface defines a complete listener for a parse tree produced byGmlParser.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidenterGml(GmlParser.GmlContext ctx)Enter a parse tree produced byGmlParser.gml().voidenterListKeyValue(GmlParser.ListKeyValueContext ctx)Enter a parse tree produced by theListKeyValuelabeled alternative inGmlParser.keyValuePair().voidenterNumberKeyValue(GmlParser.NumberKeyValueContext ctx)Enter a parse tree produced by theNumberKeyValuelabeled alternative inGmlParser.keyValuePair().voidenterStringKeyValue(GmlParser.StringKeyValueContext ctx)Enter a parse tree produced by theStringKeyValuelabeled alternative inGmlParser.keyValuePair().voidexitGml(GmlParser.GmlContext ctx)Exit a parse tree produced byGmlParser.gml().voidexitListKeyValue(GmlParser.ListKeyValueContext ctx)Exit a parse tree produced by theListKeyValuelabeled alternative inGmlParser.keyValuePair().voidexitNumberKeyValue(GmlParser.NumberKeyValueContext ctx)Exit a parse tree produced by theNumberKeyValuelabeled alternative inGmlParser.keyValuePair().voidexitStringKeyValue(GmlParser.StringKeyValueContext ctx)Exit a parse tree produced by theStringKeyValuelabeled alternative inGmlParser.keyValuePair().
-
-
-
Method Detail
-
enterGml
void enterGml(GmlParser.GmlContext ctx)
Enter a parse tree produced byGmlParser.gml().- Parameters:
ctx- the parse tree
-
exitGml
void exitGml(GmlParser.GmlContext ctx)
Exit a parse tree produced byGmlParser.gml().- Parameters:
ctx- the parse tree
-
enterStringKeyValue
void enterStringKeyValue(GmlParser.StringKeyValueContext ctx)
Enter a parse tree produced by theStringKeyValuelabeled alternative inGmlParser.keyValuePair().- Parameters:
ctx- the parse tree
-
exitStringKeyValue
void exitStringKeyValue(GmlParser.StringKeyValueContext ctx)
Exit a parse tree produced by theStringKeyValuelabeled alternative inGmlParser.keyValuePair().- Parameters:
ctx- the parse tree
-
enterNumberKeyValue
void enterNumberKeyValue(GmlParser.NumberKeyValueContext ctx)
Enter a parse tree produced by theNumberKeyValuelabeled alternative inGmlParser.keyValuePair().- Parameters:
ctx- the parse tree
-
exitNumberKeyValue
void exitNumberKeyValue(GmlParser.NumberKeyValueContext ctx)
Exit a parse tree produced by theNumberKeyValuelabeled alternative inGmlParser.keyValuePair().- Parameters:
ctx- the parse tree
-
enterListKeyValue
void enterListKeyValue(GmlParser.ListKeyValueContext ctx)
Enter a parse tree produced by theListKeyValuelabeled alternative inGmlParser.keyValuePair().- Parameters:
ctx- the parse tree
-
exitListKeyValue
void exitListKeyValue(GmlParser.ListKeyValueContext ctx)
Exit a parse tree produced by theListKeyValuelabeled alternative inGmlParser.keyValuePair().- Parameters:
ctx- the parse tree
-
-