public class ListBaseListener extends java.lang.Object implements ListListener
ListListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
ListBaseListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
enterBool(ListParser.BoolContext ctx)
Enter a parse tree produced by
ListParser.bool(). |
void |
enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
|
void |
enterList(ListParser.ListContext ctx)
Enter a parse tree produced by
ListParser.list(). |
void |
enterListElement(ListParser.ListElementContext ctx)
Enter a parse tree produced by
ListParser.listElement(). |
void |
enterNumber(ListParser.NumberContext ctx)
Enter a parse tree produced by
ListParser.number(). |
void |
enterPath(ListParser.PathContext ctx)
Enter a parse tree produced by
ListParser.path(). |
void |
enterString(ListParser.StringContext ctx)
Enter a parse tree produced by
ListParser.string(). |
void |
exitBool(ListParser.BoolContext ctx)
Exit a parse tree produced by
ListParser.bool(). |
void |
exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
|
void |
exitList(ListParser.ListContext ctx)
Exit a parse tree produced by
ListParser.list(). |
void |
exitListElement(ListParser.ListElementContext ctx)
Exit a parse tree produced by
ListParser.listElement(). |
void |
exitNumber(ListParser.NumberContext ctx)
Exit a parse tree produced by
ListParser.number(). |
void |
exitPath(ListParser.PathContext ctx)
Exit a parse tree produced by
ListParser.path(). |
void |
exitString(ListParser.StringContext ctx)
Exit a parse tree produced by
ListParser.string(). |
void |
visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
|
void |
visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
|
public void enterList(ListParser.ListContext ctx)
ListParser.list().
The default implementation does nothing.
enterList in interface ListListenerctx - the parse treepublic void exitList(ListParser.ListContext ctx)
ListParser.list().
The default implementation does nothing.
exitList in interface ListListenerctx - the parse treepublic void enterListElement(ListParser.ListElementContext ctx)
ListParser.listElement().
The default implementation does nothing.
enterListElement in interface ListListenerctx - the parse treepublic void exitListElement(ListParser.ListElementContext ctx)
ListParser.listElement().
The default implementation does nothing.
exitListElement in interface ListListenerctx - the parse treepublic void enterPath(ListParser.PathContext ctx)
ListParser.path().
The default implementation does nothing.
enterPath in interface ListListenerctx - the parse treepublic void exitPath(ListParser.PathContext ctx)
ListParser.path().
The default implementation does nothing.
exitPath in interface ListListenerctx - the parse treepublic void enterNumber(ListParser.NumberContext ctx)
ListParser.number().
The default implementation does nothing.
enterNumber in interface ListListenerctx - the parse treepublic void exitNumber(ListParser.NumberContext ctx)
ListParser.number().
The default implementation does nothing.
exitNumber in interface ListListenerctx - the parse treepublic void enterBool(ListParser.BoolContext ctx)
ListParser.bool().
The default implementation does nothing.
enterBool in interface ListListenerctx - the parse treepublic void exitBool(ListParser.BoolContext ctx)
ListParser.bool().
The default implementation does nothing.
exitBool in interface ListListenerctx - the parse treepublic void enterString(ListParser.StringContext ctx)
ListParser.string().
The default implementation does nothing.
enterString in interface ListListenerctx - the parse treepublic void exitString(ListParser.StringContext ctx)
ListParser.string().
The default implementation does nothing.
exitString in interface ListListenerctx - the parse treepublic void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
enterEveryRule in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
exitEveryRule in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
visitTerminal in interface org.antlr.v4.runtime.tree.ParseTreeListenerpublic void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
visitErrorNode in interface org.antlr.v4.runtime.tree.ParseTreeListener