-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
JsonBaseListener
interface JsonListener extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced byJsonParser
.
-
-
Method Summary
-
-
-
Method Detail
-
enterJson
void enterJson(JsonParser.JsonContext ctx)
Enter a parse tree produced byJsonParser.json()
.- Parameters:
ctx
- the parse tree
-
exitJson
void exitJson(JsonParser.JsonContext ctx)
Exit a parse tree produced byJsonParser.json()
.- Parameters:
ctx
- the parse tree
-
enterObj
void enterObj(JsonParser.ObjContext ctx)
Enter a parse tree produced byJsonParser.obj()
.- Parameters:
ctx
- the parse tree
-
exitObj
void exitObj(JsonParser.ObjContext ctx)
Exit a parse tree produced byJsonParser.obj()
.- Parameters:
ctx
- the parse tree
-
enterPair
void enterPair(JsonParser.PairContext ctx)
Enter a parse tree produced byJsonParser.pair()
.- Parameters:
ctx
- the parse tree
-
exitPair
void exitPair(JsonParser.PairContext ctx)
Exit a parse tree produced byJsonParser.pair()
.- Parameters:
ctx
- the parse tree
-
enterArray
void enterArray(JsonParser.ArrayContext ctx)
Enter a parse tree produced byJsonParser.array()
.- Parameters:
ctx
- the parse tree
-
exitArray
void exitArray(JsonParser.ArrayContext ctx)
Exit a parse tree produced byJsonParser.array()
.- Parameters:
ctx
- the parse tree
-
enterValue
void enterValue(JsonParser.ValueContext ctx)
Enter a parse tree produced byJsonParser.value()
.- Parameters:
ctx
- the parse tree
-
exitValue
void exitValue(JsonParser.ValueContext ctx)
Exit a parse tree produced byJsonParser.value()
.- Parameters:
ctx
- the parse tree
-
-