
net.fchauvel.trio.builder.TrioVisitor Maven / Gradle / Ivy
The newest version!
// Generated from net\fchauvel\trio\builder\Trio.g4 by ANTLR 4.3
package net.fchauvel.trio.builder;
import org.antlr.v4.runtime.misc.NotNull;
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
/**
* This interface defines a complete generic visitor for a parse tree produced
* by {@link TrioParser}.
*
* @param The return type of the visit operation. Use {@link Void} for
* operations with no return type.
*/
public interface TrioVisitor extends ParseTreeVisitor {
/**
* Visit a parse tree produced by {@link TrioParser#component}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitComponent(@NotNull TrioParser.ComponentContext ctx);
/**
* Visit a parse tree produced by {@link TrioParser#requirements}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitRequirements(@NotNull TrioParser.RequirementsContext ctx);
/**
* Visit a parse tree produced by the {@code Disjunction}
* labeled alternative in {@link TrioParser#expression}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitDisjunction(@NotNull TrioParser.DisjunctionContext ctx);
/**
* Visit a parse tree produced by {@link TrioParser#system}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitSystem(@NotNull TrioParser.SystemContext ctx);
/**
* Visit a parse tree produced by the {@code Brackets}
* labeled alternative in {@link TrioParser#expression}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitBrackets(@NotNull TrioParser.BracketsContext ctx);
/**
* Visit a parse tree produced by the {@code Reference}
* labeled alternative in {@link TrioParser#expression}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitReference(@NotNull TrioParser.ReferenceContext ctx);
/**
* Visit a parse tree produced by the {@code Conjunction}
* labeled alternative in {@link TrioParser#expression}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitConjunction(@NotNull TrioParser.ConjunctionContext ctx);
/**
* Visit a parse tree produced by {@link TrioParser#description}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitDescription(@NotNull TrioParser.DescriptionContext ctx);
/**
* Visit a parse tree produced by {@link TrioParser#mttf}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitMttf(@NotNull TrioParser.MttfContext ctx);
/**
* Visit a parse tree produced by {@link TrioParser#tag}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitTag(@NotNull TrioParser.TagContext ctx);
/**
* Visit a parse tree produced by {@link TrioParser#tags}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitTags(@NotNull TrioParser.TagsContext ctx);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy