Interface JSONListener
-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
JSONBaseListener
public interface JSONListener extends org.antlr.v4.runtime.tree.ParseTreeListenerThis interface defines a complete listener for a parse tree produced byJSONParser.
-
-
Method Summary
-
-
-
Method Detail
-
enterDocument
void enterDocument(JSONParser.DocumentContext ctx)
Enter a parse tree produced byJSONParser.document().- Parameters:
ctx- the parse tree
-
exitDocument
void exitDocument(JSONParser.DocumentContext ctx)
Exit a parse tree produced byJSONParser.document().- Parameters:
ctx- the parse tree
-
enterObject
void enterObject(JSONParser.ObjectContext ctx)
Enter a parse tree produced byJSONParser.object().- Parameters:
ctx- the parse tree
-
exitObject
void exitObject(JSONParser.ObjectContext ctx)
Exit a parse tree produced byJSONParser.object().- Parameters:
ctx- the parse tree
-
enterKeyValuePair
void enterKeyValuePair(JSONParser.KeyValuePairContext ctx)
Enter a parse tree produced byJSONParser.keyValuePair().- Parameters:
ctx- the parse tree
-
exitKeyValuePair
void exitKeyValuePair(JSONParser.KeyValuePairContext ctx)
Exit a parse tree produced byJSONParser.keyValuePair().- Parameters:
ctx- the parse tree
-
enterArrayElements
void enterArrayElements(JSONParser.ArrayElementsContext ctx)
Enter a parse tree produced byJSONParser.arrayElements().- Parameters:
ctx- the parse tree
-
exitArrayElements
void exitArrayElements(JSONParser.ArrayElementsContext ctx)
Exit a parse tree produced byJSONParser.arrayElements().- 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
-
enterScalarValue
void enterScalarValue(JSONParser.ScalarValueContext ctx)
Enter a parse tree produced byJSONParser.scalarValue().- Parameters:
ctx- the parse tree
-
exitScalarValue
void exitScalarValue(JSONParser.ScalarValueContext ctx)
Exit a parse tree produced byJSONParser.scalarValue().- Parameters:
ctx- the parse tree
-
-