99 lines
2.7 KiB
Java
99 lines
2.7 KiB
Java
// Generated from CKEnumsParser.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 CKEnumsParserListener},
|
|
* which can be extended to create a listener which only needs to handle a subset
|
|
* of the available methods.
|
|
*/
|
|
@SuppressWarnings("CheckReturnValue")
|
|
public class CKEnumsParserBaseListener implements CKEnumsParserListener {
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void enterProg(CKEnumsParser.ProgContext ctx) { }
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void exitProg(CKEnumsParser.ProgContext ctx) { }
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void enterEnumBody(CKEnumsParser.EnumBodyContext ctx) { }
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void exitEnumBody(CKEnumsParser.EnumBodyContext ctx) { }
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void enterEntryPair(CKEnumsParser.EntryPairContext ctx) { }
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void exitEntryPair(CKEnumsParser.EntryPairContext ctx) { }
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void enterEntryDirectValue(CKEnumsParser.EntryDirectValueContext ctx) { }
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void exitEntryDirectValue(CKEnumsParser.EntryDirectValueContext ctx) { }
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void enterEntryRelativeValue(CKEnumsParser.EntryRelativeValueContext ctx) { }
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* <p>The default implementation does nothing.</p>
|
|
*/
|
|
@Override public void exitEntryRelativeValue(CKEnumsParser.EntryRelativeValueContext 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) { }
|
|
} |