63 lines
1.7 KiB
Java
63 lines
1.7 KiB
Java
// Generated from CKDefinesParser.g4 by ANTLR 4.13.0
|
|
|
|
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 CKDefinesParserListener},
|
|
* which can be extended to create a listener which only needs to handle a subset
|
|
* of the available methods.
|
|
*/
|
|
@SuppressWarnings("CheckReturnValue")
|
|
public class CKDefinesParserBaseListener implements CKDefinesParserListener {
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void enterProg(CKDefinesParser.ProgContext ctx) { }
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void exitProg(CKDefinesParser.ProgContext ctx) { }
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void enterDefinePair(CKDefinesParser.DefinePairContext ctx) { }
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void exitDefinePair(CKDefinesParser.DefinePairContext 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) { }
|
|
} |