com.neotys.neoload.model.v3.binding.serializer.ConditionVisitor Maven / Gradle / Ivy
// Generated from com/neotys/neoload/model/v3/binding/serializer/Condition.g4 by ANTLR 4.7.1
package com.neotys.neoload.model.v3.binding.serializer;
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
/**
* This interface defines a complete generic visitor for a parse tree produced
* by {@link ConditionParser}.
*
* @param The return type of the visit operation. Use {@link Void} for
* operations with no return type.
*/
public interface ConditionVisitor extends ParseTreeVisitor {
/**
* Visit a parse tree produced by {@link ConditionParser#condition}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitCondition(ConditionParser.ConditionContext ctx);
/**
* Visit a parse tree produced by {@link ConditionParser#operator}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitOperator(ConditionParser.OperatorContext ctx);
/**
* Visit a parse tree produced by {@link ConditionParser#operand1}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitOperand1(ConditionParser.Operand1Context ctx);
/**
* Visit a parse tree produced by {@link ConditionParser#operand2}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitOperand2(ConditionParser.Operand2Context ctx);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy