Package org.qdl_lang.ini_generated
Class iniBaseListener
- java.lang.Object
- 
- org.qdl_lang.ini_generated.iniBaseListener
 
- 
- All Implemented Interfaces:
- org.antlr.v4.runtime.tree.ParseTreeListener,- iniListener
 
 public class iniBaseListener extends Object implements iniListener This class provides an empty implementation ofiniListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
- 
- 
Constructor SummaryConstructors Constructor Description iniBaseListener()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidenterEntries(iniParser.EntriesContext ctx)Enter a parse tree produced byiniParser.entries().voidenterEntry(iniParser.EntryContext ctx)Enter a parse tree produced byiniParser.entry().voidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)voidenterIni(iniParser.IniContext ctx)Enter a parse tree produced byiniParser.ini().voidenterLine(iniParser.LineContext ctx)Enter a parse tree produced byiniParser.line().voidenterSection(iniParser.SectionContext ctx)Enter a parse tree produced byiniParser.section().voidenterSectionheader(iniParser.SectionheaderContext ctx)Enter a parse tree produced byiniParser.sectionheader().voidexitEntries(iniParser.EntriesContext ctx)Exit a parse tree produced byiniParser.entries().voidexitEntry(iniParser.EntryContext ctx)Exit a parse tree produced byiniParser.entry().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)voidexitIni(iniParser.IniContext ctx)Exit a parse tree produced byiniParser.ini().voidexitLine(iniParser.LineContext ctx)Exit a parse tree produced byiniParser.line().voidexitSection(iniParser.SectionContext ctx)Exit a parse tree produced byiniParser.section().voidexitSectionheader(iniParser.SectionheaderContext ctx)Exit a parse tree produced byiniParser.sectionheader().voidvisitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)voidvisitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
 
- 
- 
- 
Method Detail- 
enterInipublic void enterIni(iniParser.IniContext ctx) Enter a parse tree produced byiniParser.ini().The default implementation does nothing. - Specified by:
- enterIniin interface- iniListener
- Parameters:
- ctx- the parse tree
 
 - 
exitInipublic void exitIni(iniParser.IniContext ctx) Exit a parse tree produced byiniParser.ini().The default implementation does nothing. - Specified by:
- exitIniin interface- iniListener
- Parameters:
- ctx- the parse tree
 
 - 
enterSectionpublic void enterSection(iniParser.SectionContext ctx) Enter a parse tree produced byiniParser.section().The default implementation does nothing. - Specified by:
- enterSectionin interface- iniListener
- Parameters:
- ctx- the parse tree
 
 - 
exitSectionpublic void exitSection(iniParser.SectionContext ctx) Exit a parse tree produced byiniParser.section().The default implementation does nothing. - Specified by:
- exitSectionin interface- iniListener
- Parameters:
- ctx- the parse tree
 
 - 
enterSectionheaderpublic void enterSectionheader(iniParser.SectionheaderContext ctx) Enter a parse tree produced byiniParser.sectionheader().The default implementation does nothing. - Specified by:
- enterSectionheaderin interface- iniListener
- Parameters:
- ctx- the parse tree
 
 - 
exitSectionheaderpublic void exitSectionheader(iniParser.SectionheaderContext ctx) Exit a parse tree produced byiniParser.sectionheader().The default implementation does nothing. - Specified by:
- exitSectionheaderin interface- iniListener
- Parameters:
- ctx- the parse tree
 
 - 
enterLinepublic void enterLine(iniParser.LineContext ctx) Enter a parse tree produced byiniParser.line().The default implementation does nothing. - Specified by:
- enterLinein interface- iniListener
- Parameters:
- ctx- the parse tree
 
 - 
exitLinepublic void exitLine(iniParser.LineContext ctx) Exit a parse tree produced byiniParser.line().The default implementation does nothing. - Specified by:
- exitLinein interface- iniListener
- Parameters:
- ctx- the parse tree
 
 - 
enterEntriespublic void enterEntries(iniParser.EntriesContext ctx) Enter a parse tree produced byiniParser.entries().The default implementation does nothing. - Specified by:
- enterEntriesin interface- iniListener
- Parameters:
- ctx- the parse tree
 
 - 
exitEntriespublic void exitEntries(iniParser.EntriesContext ctx) Exit a parse tree produced byiniParser.entries().The default implementation does nothing. - Specified by:
- exitEntriesin interface- iniListener
- Parameters:
- ctx- the parse tree
 
 - 
enterEntrypublic void enterEntry(iniParser.EntryContext ctx) Enter a parse tree produced byiniParser.entry().The default implementation does nothing. - Specified by:
- enterEntryin interface- iniListener
- Parameters:
- ctx- the parse tree
 
 - 
exitEntrypublic void exitEntry(iniParser.EntryContext ctx) Exit a parse tree produced byiniParser.entry().The default implementation does nothing. - Specified by:
- exitEntryin interface- iniListener
- Parameters:
- ctx- the parse tree
 
 - 
enterEveryRulepublic void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing. - Specified by:
- enterEveryRulein interface- org.antlr.v4.runtime.tree.ParseTreeListener
 
 - 
exitEveryRulepublic void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing. - Specified by:
- exitEveryRulein interface- org.antlr.v4.runtime.tree.ParseTreeListener
 
 - 
visitTerminalpublic void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) The default implementation does nothing. - Specified by:
- visitTerminalin interface- org.antlr.v4.runtime.tree.ParseTreeListener
 
 - 
visitErrorNodepublic void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) The default implementation does nothing. - Specified by:
- visitErrorNodein interface- org.antlr.v4.runtime.tree.ParseTreeListener
 
 
- 
 
-