com.neotys.neoload.model.v3.binding.serializer.ConditionBaseVisitor 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.AbstractParseTreeVisitor;
/**
* This class provides an empty implementation of {@link ConditionVisitor},
* which can be extended to create a visitor which only needs to handle a subset
* of the available methods.
*
* @param The return type of the visit operation. Use {@link Void} for
* operations with no return type.
*/
public class ConditionBaseVisitor extends AbstractParseTreeVisitor implements ConditionVisitor {
/**
* {@inheritDoc}
*
* The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitCondition(ConditionParser.ConditionContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitOperator(ConditionParser.OperatorContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitOperand1(ConditionParser.Operand1Context ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitOperand2(ConditionParser.Operand2Context ctx) { return visitChildren(ctx); }
}