// Generated from com/jaeksoft/searchlib/query/parser/BooleanQuery.g4 by ANTLR 4.5 package com.jaeksoft.searchlib.query.parser; import org.antlr.v4.runtime.ParserRuleContext; import org.antlr.v4.runtime.tree.ErrorNode; import org.antlr.v4.runtime.tree.TerminalNode; /** * This class provides an empty implementation of {@link BooleanQueryListener}, * which can be extended to create a listener which only needs to handle a * subset of the available methods. */ public class BooleanQueryBaseListener implements BooleanQueryListener { /** * {@inheritDoc} * * <p> * The default implementation does nothing. * </p> */ @Override public void enterExpression(BooleanQueryParser.ExpressionContext ctx) { } /** * {@inheritDoc} * * <p> * The default implementation does nothing. * </p> */ @Override public void exitExpression(BooleanQueryParser.ExpressionContext ctx) { } /** * {@inheritDoc} * * <p> * The default implementation does nothing. * </p> */ @Override public void enterTerm(BooleanQueryParser.TermContext ctx) { } /** * {@inheritDoc} * * <p> * The default implementation does nothing. * </p> */ @Override public void exitTerm(BooleanQueryParser.TermContext ctx) { } /** * {@inheritDoc} * * <p> * The default implementation does nothing. * </p> */ @Override public void enterEveryRule(ParserRuleContext ctx) { } /** * {@inheritDoc} * * <p> * The default implementation does nothing. * </p> */ @Override public void exitEveryRule(ParserRuleContext ctx) { } /** * {@inheritDoc} * * <p> * The default implementation does nothing. * </p> */ @Override public void visitTerminal(TerminalNode node) { } /** * {@inheritDoc} * * <p> * The default implementation does nothing. * </p> */ @Override public void visitErrorNode(ErrorNode node) { } }