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 Summary
Constructors Constructor Description iniBaseListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
enterEntries(iniParser.EntriesContext ctx)
Enter a parse tree produced byiniParser.entries()
.void
enterEntry(iniParser.EntryContext ctx)
Enter a parse tree produced byiniParser.entry()
.void
enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
void
enterIni(iniParser.IniContext ctx)
Enter a parse tree produced byiniParser.ini()
.void
enterLine(iniParser.LineContext ctx)
Enter a parse tree produced byiniParser.line()
.void
enterSection(iniParser.SectionContext ctx)
Enter a parse tree produced byiniParser.section()
.void
enterSectionheader(iniParser.SectionheaderContext ctx)
Enter a parse tree produced byiniParser.sectionheader()
.void
exitEntries(iniParser.EntriesContext ctx)
Exit a parse tree produced byiniParser.entries()
.void
exitEntry(iniParser.EntryContext ctx)
Exit a parse tree produced byiniParser.entry()
.void
exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
void
exitIni(iniParser.IniContext ctx)
Exit a parse tree produced byiniParser.ini()
.void
exitLine(iniParser.LineContext ctx)
Exit a parse tree produced byiniParser.line()
.void
exitSection(iniParser.SectionContext ctx)
Exit a parse tree produced byiniParser.section()
.void
exitSectionheader(iniParser.SectionheaderContext ctx)
Exit a parse tree produced byiniParser.sectionheader()
.void
visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
void
visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
-
-
Method Detail
-
enterIni
public void enterIni(iniParser.IniContext ctx)
Enter a parse tree produced byiniParser.ini()
.The default implementation does nothing.
- Specified by:
enterIni
in interfaceiniListener
- Parameters:
ctx
- the parse tree
-
exitIni
public void exitIni(iniParser.IniContext ctx)
Exit a parse tree produced byiniParser.ini()
.The default implementation does nothing.
- Specified by:
exitIni
in interfaceiniListener
- Parameters:
ctx
- the parse tree
-
enterSection
public void enterSection(iniParser.SectionContext ctx)
Enter a parse tree produced byiniParser.section()
.The default implementation does nothing.
- Specified by:
enterSection
in interfaceiniListener
- Parameters:
ctx
- the parse tree
-
exitSection
public void exitSection(iniParser.SectionContext ctx)
Exit a parse tree produced byiniParser.section()
.The default implementation does nothing.
- Specified by:
exitSection
in interfaceiniListener
- Parameters:
ctx
- the parse tree
-
enterSectionheader
public void enterSectionheader(iniParser.SectionheaderContext ctx)
Enter a parse tree produced byiniParser.sectionheader()
.The default implementation does nothing.
- Specified by:
enterSectionheader
in interfaceiniListener
- Parameters:
ctx
- the parse tree
-
exitSectionheader
public void exitSectionheader(iniParser.SectionheaderContext ctx)
Exit a parse tree produced byiniParser.sectionheader()
.The default implementation does nothing.
- Specified by:
exitSectionheader
in interfaceiniListener
- Parameters:
ctx
- the parse tree
-
enterLine
public void enterLine(iniParser.LineContext ctx)
Enter a parse tree produced byiniParser.line()
.The default implementation does nothing.
- Specified by:
enterLine
in interfaceiniListener
- Parameters:
ctx
- the parse tree
-
exitLine
public void exitLine(iniParser.LineContext ctx)
Exit a parse tree produced byiniParser.line()
.The default implementation does nothing.
- Specified by:
exitLine
in interfaceiniListener
- Parameters:
ctx
- the parse tree
-
enterEntries
public void enterEntries(iniParser.EntriesContext ctx)
Enter a parse tree produced byiniParser.entries()
.The default implementation does nothing.
- Specified by:
enterEntries
in interfaceiniListener
- Parameters:
ctx
- the parse tree
-
exitEntries
public void exitEntries(iniParser.EntriesContext ctx)
Exit a parse tree produced byiniParser.entries()
.The default implementation does nothing.
- Specified by:
exitEntries
in interfaceiniListener
- Parameters:
ctx
- the parse tree
-
enterEntry
public void enterEntry(iniParser.EntryContext ctx)
Enter a parse tree produced byiniParser.entry()
.The default implementation does nothing.
- Specified by:
enterEntry
in interfaceiniListener
- Parameters:
ctx
- the parse tree
-
exitEntry
public void exitEntry(iniParser.EntryContext ctx)
Exit a parse tree produced byiniParser.entry()
.The default implementation does nothing.
- Specified by:
exitEntry
in interfaceiniListener
- Parameters:
ctx
- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminal
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNode
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-