-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
GmlBaseListener
interface GmlListener extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced byGmlParser
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
enterGml(GmlParser.GmlContext ctx)
Enter a parse tree produced byGmlParser.gml()
.void
enterListKeyValue(GmlParser.ListKeyValueContext ctx)
Enter a parse tree produced by theListKeyValue
labeled alternative inGmlParser.keyValuePair()
.void
enterNumberKeyValue(GmlParser.NumberKeyValueContext ctx)
Enter a parse tree produced by theNumberKeyValue
labeled alternative inGmlParser.keyValuePair()
.void
enterStringKeyValue(GmlParser.StringKeyValueContext ctx)
Enter a parse tree produced by theStringKeyValue
labeled alternative inGmlParser.keyValuePair()
.void
exitGml(GmlParser.GmlContext ctx)
Exit a parse tree produced byGmlParser.gml()
.void
exitListKeyValue(GmlParser.ListKeyValueContext ctx)
Exit a parse tree produced by theListKeyValue
labeled alternative inGmlParser.keyValuePair()
.void
exitNumberKeyValue(GmlParser.NumberKeyValueContext ctx)
Exit a parse tree produced by theNumberKeyValue
labeled alternative inGmlParser.keyValuePair()
.void
exitStringKeyValue(GmlParser.StringKeyValueContext ctx)
Exit a parse tree produced by theStringKeyValue
labeled 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 theStringKeyValue
labeled alternative inGmlParser.keyValuePair()
.- Parameters:
ctx
- the parse tree
-
exitStringKeyValue
void exitStringKeyValue(GmlParser.StringKeyValueContext ctx)
Exit a parse tree produced by theStringKeyValue
labeled alternative inGmlParser.keyValuePair()
.- Parameters:
ctx
- the parse tree
-
enterNumberKeyValue
void enterNumberKeyValue(GmlParser.NumberKeyValueContext ctx)
Enter a parse tree produced by theNumberKeyValue
labeled alternative inGmlParser.keyValuePair()
.- Parameters:
ctx
- the parse tree
-
exitNumberKeyValue
void exitNumberKeyValue(GmlParser.NumberKeyValueContext ctx)
Exit a parse tree produced by theNumberKeyValue
labeled alternative inGmlParser.keyValuePair()
.- Parameters:
ctx
- the parse tree
-
enterListKeyValue
void enterListKeyValue(GmlParser.ListKeyValueContext ctx)
Enter a parse tree produced by theListKeyValue
labeled alternative inGmlParser.keyValuePair()
.- Parameters:
ctx
- the parse tree
-
exitListKeyValue
void exitListKeyValue(GmlParser.ListKeyValueContext ctx)
Exit a parse tree produced by theListKeyValue
labeled alternative inGmlParser.keyValuePair()
.- Parameters:
ctx
- the parse tree
-
-