Package hudson.scheduler
Class CrontabParserBaseListener
java.lang.Object
hudson.scheduler.CrontabParserBaseListener
- All Implemented Interfaces:
CrontabParserListener
,org.antlr.v4.runtime.tree.ParseTreeListener
This class provides an empty implementation of
CrontabParserListener
,
which can be extended to create a listener which only needs to handle a subset
of the available methods.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
enterEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) void
Enter a parse tree produced byCrontabParser.expr(int)
.void
Enter a parse tree produced byCrontabParser.startRule(hudson.scheduler.CronTab)
.void
Enter a parse tree produced byCrontabParser.term(int)
.void
Enter a parse tree produced byCrontabParser.token()
.void
exitEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) void
Exit a parse tree produced byCrontabParser.expr(int)
.void
Exit a parse tree produced byCrontabParser.startRule(hudson.scheduler.CronTab)
.void
Exit a parse tree produced byCrontabParser.term(int)
.void
Exit a parse tree produced byCrontabParser.token()
.void
visitErrorNode
(org.antlr.v4.runtime.tree.ErrorNode node) void
visitTerminal
(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
CrontabParserBaseListener
public CrontabParserBaseListener()
-
-
Method Details
-
enterStartRule
Enter a parse tree produced byCrontabParser.startRule(hudson.scheduler.CronTab)
.The default implementation does nothing.
- Specified by:
enterStartRule
in interfaceCrontabParserListener
- Parameters:
ctx
- the parse tree
-
exitStartRule
Exit a parse tree produced byCrontabParser.startRule(hudson.scheduler.CronTab)
.The default implementation does nothing.
- Specified by:
exitStartRule
in interfaceCrontabParserListener
- Parameters:
ctx
- the parse tree
-
enterExpr
Enter a parse tree produced byCrontabParser.expr(int)
.The default implementation does nothing.
- Specified by:
enterExpr
in interfaceCrontabParserListener
- Parameters:
ctx
- the parse tree
-
exitExpr
Exit a parse tree produced byCrontabParser.expr(int)
.The default implementation does nothing.
- Specified by:
exitExpr
in interfaceCrontabParserListener
- Parameters:
ctx
- the parse tree
-
enterTerm
Enter a parse tree produced byCrontabParser.term(int)
.The default implementation does nothing.
- Specified by:
enterTerm
in interfaceCrontabParserListener
- Parameters:
ctx
- the parse tree
-
exitTerm
Exit a parse tree produced byCrontabParser.term(int)
.The default implementation does nothing.
- Specified by:
exitTerm
in interfaceCrontabParserListener
- Parameters:
ctx
- the parse tree
-
enterToken
Enter a parse tree produced byCrontabParser.token()
.The default implementation does nothing.
- Specified by:
enterToken
in interfaceCrontabParserListener
- Parameters:
ctx
- the parse tree
-
exitToken
Exit a parse tree produced byCrontabParser.token()
.The default implementation does nothing.
- Specified by:
exitToken
in interfaceCrontabParserListener
- Parameters:
ctx
- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
enterEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
exitEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) The default implementation does nothing.
- Specified by:
visitTerminal
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) The default implementation does nothing.
- Specified by:
visitErrorNode
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-