Package fr.project.lib
Class CommaSeparatedValuesBaseListener
java.lang.Object
fr.project.lib.CommaSeparatedValuesBaseListener
- All Implemented Interfaces:
CommaSeparatedValuesListener,org.antlr.v4.runtime.tree.ParseTreeListener
public class CommaSeparatedValuesBaseListener
extends Object
implements CommaSeparatedValuesListener
This class provides an empty implementation of
CommaSeparatedValuesListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidEnter a parse tree produced byCommaSeparatedValuesParser.commaSeparatedValuesFile().voidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidEnter a parse tree produced byCommaSeparatedValuesParser.field().voidEnter a parse tree produced byCommaSeparatedValuesParser.hdr().voidEnter a parse tree produced byCommaSeparatedValuesParser.row().voidExit a parse tree produced byCommaSeparatedValuesParser.commaSeparatedValuesFile().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidExit a parse tree produced byCommaSeparatedValuesParser.field().voidExit a parse tree produced byCommaSeparatedValuesParser.hdr().voidExit a parse tree produced byCommaSeparatedValuesParser.row().voidvisitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) voidvisitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
CommaSeparatedValuesBaseListener
public CommaSeparatedValuesBaseListener()
-
-
Method Details
-
enterCommaSeparatedValuesFile
public void enterCommaSeparatedValuesFile(CommaSeparatedValuesParser.CommaSeparatedValuesFileContext ctx) Enter a parse tree produced byCommaSeparatedValuesParser.commaSeparatedValuesFile().The default implementation does nothing.
- Specified by:
enterCommaSeparatedValuesFilein interfaceCommaSeparatedValuesListener- Parameters:
ctx- the parse tree
-
exitCommaSeparatedValuesFile
public void exitCommaSeparatedValuesFile(CommaSeparatedValuesParser.CommaSeparatedValuesFileContext ctx) Exit a parse tree produced byCommaSeparatedValuesParser.commaSeparatedValuesFile().The default implementation does nothing.
- Specified by:
exitCommaSeparatedValuesFilein interfaceCommaSeparatedValuesListener- Parameters:
ctx- the parse tree
-
enterHdr
Enter a parse tree produced byCommaSeparatedValuesParser.hdr().The default implementation does nothing.
- Specified by:
enterHdrin interfaceCommaSeparatedValuesListener- Parameters:
ctx- the parse tree
-
exitHdr
Exit a parse tree produced byCommaSeparatedValuesParser.hdr().The default implementation does nothing.
- Specified by:
exitHdrin interfaceCommaSeparatedValuesListener- Parameters:
ctx- the parse tree
-
enterRow
Enter a parse tree produced byCommaSeparatedValuesParser.row().The default implementation does nothing.
- Specified by:
enterRowin interfaceCommaSeparatedValuesListener- Parameters:
ctx- the parse tree
-
exitRow
Exit a parse tree produced byCommaSeparatedValuesParser.row().The default implementation does nothing.
- Specified by:
exitRowin interfaceCommaSeparatedValuesListener- Parameters:
ctx- the parse tree
-
enterField
Enter a parse tree produced byCommaSeparatedValuesParser.field().The default implementation does nothing.
- Specified by:
enterFieldin interfaceCommaSeparatedValuesListener- Parameters:
ctx- the parse tree
-
exitField
Exit a parse tree produced byCommaSeparatedValuesParser.field().The default implementation does nothing.
- Specified by:
exitFieldin interfaceCommaSeparatedValuesListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-