Package hudson.scheduler
Interface CrontabParserListener
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
CrontabParserBaseListener
public interface CrontabParserListener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
CrontabParser
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
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
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()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterStartRule
Enter a parse tree produced byCrontabParser.startRule(hudson.scheduler.CronTab)
.- Parameters:
ctx
- the parse tree
-
exitStartRule
Exit a parse tree produced byCrontabParser.startRule(hudson.scheduler.CronTab)
.- Parameters:
ctx
- the parse tree
-
enterExpr
Enter a parse tree produced byCrontabParser.expr(int)
.- Parameters:
ctx
- the parse tree
-
exitExpr
Exit a parse tree produced byCrontabParser.expr(int)
.- Parameters:
ctx
- the parse tree
-
enterTerm
Enter a parse tree produced byCrontabParser.term(int)
.- Parameters:
ctx
- the parse tree
-
exitTerm
Exit a parse tree produced byCrontabParser.term(int)
.- Parameters:
ctx
- the parse tree
-
enterToken
Enter a parse tree produced byCrontabParser.token()
.- Parameters:
ctx
- the parse tree
-
exitToken
Exit a parse tree produced byCrontabParser.token()
.- Parameters:
ctx
- the parse tree
-