io.fixprotocol.md.antlr.MarkdownVisitor Maven / Gradle / Ivy
// Generated from io\fixprotocol\md\antlr\Markdown.g4 by ANTLR 4.9.2
package io.fixprotocol.md.antlr;
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
/**
* This interface defines a complete generic visitor for a parse tree produced
* by {@link MarkdownParser}.
*
* @param The return type of the visit operation. Use {@link Void} for
* operations with no return type.
*/
public interface MarkdownVisitor extends ParseTreeVisitor {
/**
* Visit a parse tree produced by {@link MarkdownParser#document}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitDocument(MarkdownParser.DocumentContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#block}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitBlock(MarkdownParser.BlockContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#heading}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitHeading(MarkdownParser.HeadingContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#paragraph}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitParagraph(MarkdownParser.ParagraphContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#paragraphline}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitParagraphline(MarkdownParser.ParagraphlineContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#list}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitList(MarkdownParser.ListContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#listline}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitListline(MarkdownParser.ListlineContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#blockquote}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitBlockquote(MarkdownParser.BlockquoteContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#quoteline}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitQuoteline(MarkdownParser.QuotelineContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#fencedcodeblock}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitFencedcodeblock(MarkdownParser.FencedcodeblockContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#infostring}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitInfostring(MarkdownParser.InfostringContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#table}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitTable(MarkdownParser.TableContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#tableheading}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitTableheading(MarkdownParser.TableheadingContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#tablerow}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitTablerow(MarkdownParser.TablerowContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#cell}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitCell(MarkdownParser.CellContext ctx);
/**
* Visit a parse tree produced by {@link MarkdownParser#tabledelimiterrow}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitTabledelimiterrow(MarkdownParser.TabledelimiterrowContext ctx);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy