-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
MarkdownBaseListener,MarkdownEventSource
public interface MarkdownListener extends org.antlr.v4.runtime.tree.ParseTreeListenerThis interface defines a complete listener for a parse tree produced byMarkdownParser.
-
-
Method Summary
-
-
-
Method Detail
-
enterDocument
void enterDocument(MarkdownParser.DocumentContext ctx)
Enter a parse tree produced byMarkdownParser.document().- Parameters:
ctx- the parse tree
-
exitDocument
void exitDocument(MarkdownParser.DocumentContext ctx)
Exit a parse tree produced byMarkdownParser.document().- Parameters:
ctx- the parse tree
-
enterBlock
void enterBlock(MarkdownParser.BlockContext ctx)
Enter a parse tree produced byMarkdownParser.block().- Parameters:
ctx- the parse tree
-
exitBlock
void exitBlock(MarkdownParser.BlockContext ctx)
Exit a parse tree produced byMarkdownParser.block().- Parameters:
ctx- the parse tree
-
enterHeading
void enterHeading(MarkdownParser.HeadingContext ctx)
Enter a parse tree produced byMarkdownParser.heading().- Parameters:
ctx- the parse tree
-
exitHeading
void exitHeading(MarkdownParser.HeadingContext ctx)
Exit a parse tree produced byMarkdownParser.heading().- Parameters:
ctx- the parse tree
-
enterParagraph
void enterParagraph(MarkdownParser.ParagraphContext ctx)
Enter a parse tree produced byMarkdownParser.paragraph().- Parameters:
ctx- the parse tree
-
exitParagraph
void exitParagraph(MarkdownParser.ParagraphContext ctx)
Exit a parse tree produced byMarkdownParser.paragraph().- Parameters:
ctx- the parse tree
-
enterParagraphline
void enterParagraphline(MarkdownParser.ParagraphlineContext ctx)
Enter a parse tree produced byMarkdownParser.paragraphline().- Parameters:
ctx- the parse tree
-
exitParagraphline
void exitParagraphline(MarkdownParser.ParagraphlineContext ctx)
Exit a parse tree produced byMarkdownParser.paragraphline().- Parameters:
ctx- the parse tree
-
enterList
void enterList(MarkdownParser.ListContext ctx)
Enter a parse tree produced byMarkdownParser.list().- Parameters:
ctx- the parse tree
-
exitList
void exitList(MarkdownParser.ListContext ctx)
Exit a parse tree produced byMarkdownParser.list().- Parameters:
ctx- the parse tree
-
enterListline
void enterListline(MarkdownParser.ListlineContext ctx)
Enter a parse tree produced byMarkdownParser.listline().- Parameters:
ctx- the parse tree
-
exitListline
void exitListline(MarkdownParser.ListlineContext ctx)
Exit a parse tree produced byMarkdownParser.listline().- Parameters:
ctx- the parse tree
-
enterBlockquote
void enterBlockquote(MarkdownParser.BlockquoteContext ctx)
Enter a parse tree produced byMarkdownParser.blockquote().- Parameters:
ctx- the parse tree
-
exitBlockquote
void exitBlockquote(MarkdownParser.BlockquoteContext ctx)
Exit a parse tree produced byMarkdownParser.blockquote().- Parameters:
ctx- the parse tree
-
enterQuoteline
void enterQuoteline(MarkdownParser.QuotelineContext ctx)
Enter a parse tree produced byMarkdownParser.quoteline().- Parameters:
ctx- the parse tree
-
exitQuoteline
void exitQuoteline(MarkdownParser.QuotelineContext ctx)
Exit a parse tree produced byMarkdownParser.quoteline().- Parameters:
ctx- the parse tree
-
enterFencedcodeblock
void enterFencedcodeblock(MarkdownParser.FencedcodeblockContext ctx)
Enter a parse tree produced byMarkdownParser.fencedcodeblock().- Parameters:
ctx- the parse tree
-
exitFencedcodeblock
void exitFencedcodeblock(MarkdownParser.FencedcodeblockContext ctx)
Exit a parse tree produced byMarkdownParser.fencedcodeblock().- Parameters:
ctx- the parse tree
-
enterInfostring
void enterInfostring(MarkdownParser.InfostringContext ctx)
Enter a parse tree produced byMarkdownParser.infostring().- Parameters:
ctx- the parse tree
-
exitInfostring
void exitInfostring(MarkdownParser.InfostringContext ctx)
Exit a parse tree produced byMarkdownParser.infostring().- Parameters:
ctx- the parse tree
-
enterTable
void enterTable(MarkdownParser.TableContext ctx)
Enter a parse tree produced byMarkdownParser.table().- Parameters:
ctx- the parse tree
-
exitTable
void exitTable(MarkdownParser.TableContext ctx)
Exit a parse tree produced byMarkdownParser.table().- Parameters:
ctx- the parse tree
-
enterTableheading
void enterTableheading(MarkdownParser.TableheadingContext ctx)
Enter a parse tree produced byMarkdownParser.tableheading().- Parameters:
ctx- the parse tree
-
exitTableheading
void exitTableheading(MarkdownParser.TableheadingContext ctx)
Exit a parse tree produced byMarkdownParser.tableheading().- Parameters:
ctx- the parse tree
-
enterTablerow
void enterTablerow(MarkdownParser.TablerowContext ctx)
Enter a parse tree produced byMarkdownParser.tablerow().- Parameters:
ctx- the parse tree
-
exitTablerow
void exitTablerow(MarkdownParser.TablerowContext ctx)
Exit a parse tree produced byMarkdownParser.tablerow().- Parameters:
ctx- the parse tree
-
enterCell
void enterCell(MarkdownParser.CellContext ctx)
Enter a parse tree produced byMarkdownParser.cell().- Parameters:
ctx- the parse tree
-
exitCell
void exitCell(MarkdownParser.CellContext ctx)
Exit a parse tree produced byMarkdownParser.cell().- Parameters:
ctx- the parse tree
-
enterTabledelimiterrow
void enterTabledelimiterrow(MarkdownParser.TabledelimiterrowContext ctx)
Enter a parse tree produced byMarkdownParser.tabledelimiterrow().- Parameters:
ctx- the parse tree
-
exitTabledelimiterrow
void exitTabledelimiterrow(MarkdownParser.TabledelimiterrowContext ctx)
Exit a parse tree produced byMarkdownParser.tabledelimiterrow().- Parameters:
ctx- the parse tree
-
-