![JAR search and dependency download from the Maven repository](/logo.png)
yesql4j.antlr.YeSQLGrammarBaseListener Maven / Gradle / Ivy
Show all versions of yesql4j-maven-plugin Show documentation
// Generated from yesql4j\antlr\YeSQLGrammar.g4 by ANTLR 4.8
package yesql4j.antlr;
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 YeSQLGrammarListener},
* which can be extended to create a listener which only needs to handle a subset
* of the available methods.
*/
public class YeSQLGrammarBaseListener implements YeSQLGrammarListener {
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void enterQueries(YeSQLGrammarParser.QueriesContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void exitQueries(YeSQLGrammarParser.QueriesContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void enterQuery(YeSQLGrammarParser.QueryContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void exitQuery(YeSQLGrammarParser.QueryContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void enterStatement(YeSQLGrammarParser.StatementContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void exitStatement(YeSQLGrammarParser.StatementContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void enterDocsting(YeSQLGrammarParser.DocstingContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void exitDocsting(YeSQLGrammarParser.DocstingContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void enterName(YeSQLGrammarParser.NameContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void exitName(YeSQLGrammarParser.NameContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void enterComment(YeSQLGrammarParser.CommentContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void exitComment(YeSQLGrammarParser.CommentContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void enterLine(YeSQLGrammarParser.LineContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void exitLine(YeSQLGrammarParser.LineContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void enterEmptyline(YeSQLGrammarParser.EmptylineContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void exitEmptyline(YeSQLGrammarParser.EmptylineContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void enterEveryRule(ParserRuleContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void exitEveryRule(ParserRuleContext ctx) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void visitTerminal(TerminalNode node) { }
/**
* {@inheritDoc}
*
* The default implementation does nothing.
*/
@Override public void visitErrorNode(ErrorNode node) { }
}