Package step.core.ql
Interface OQLListener
-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
OQLBaseListener
public interface OQLListener extends org.antlr.v4.runtime.tree.ParseTreeListenerThis interface defines a complete listener for a parse tree produced byOQLParser.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidenterAndExpr(OQLParser.AndExprContext ctx)Enter a parse tree produced by theandExprlabeled alternative inOQLParser.expr().voidenterAtomExpr(OQLParser.AtomExprContext ctx)Enter a parse tree produced by theatomExprlabeled alternative inOQLParser.expr().voidenterEqualityExpr(OQLParser.EqualityExprContext ctx)Enter a parse tree produced by theequalityExprlabeled alternative inOQLParser.expr().voidenterNonQuotedStringAtom(OQLParser.NonQuotedStringAtomContext ctx)Enter a parse tree produced by thenonQuotedStringAtomlabeled alternative inOQLParser.atom().voidenterNotExpr(OQLParser.NotExprContext ctx)Enter a parse tree produced by thenotExprlabeled alternative inOQLParser.expr().voidenterOrExpr(OQLParser.OrExprContext ctx)Enter a parse tree produced by theorExprlabeled alternative inOQLParser.expr().voidenterParExpr(OQLParser.ParExprContext ctx)Enter a parse tree produced by theparExprlabeled alternative inOQLParser.atom().voidenterParse(OQLParser.ParseContext ctx)Enter a parse tree produced byOQLParser.parse().voidenterStringAtom(OQLParser.StringAtomContext ctx)Enter a parse tree produced by thestringAtomlabeled alternative inOQLParser.atom().voidexitAndExpr(OQLParser.AndExprContext ctx)Exit a parse tree produced by theandExprlabeled alternative inOQLParser.expr().voidexitAtomExpr(OQLParser.AtomExprContext ctx)Exit a parse tree produced by theatomExprlabeled alternative inOQLParser.expr().voidexitEqualityExpr(OQLParser.EqualityExprContext ctx)Exit a parse tree produced by theequalityExprlabeled alternative inOQLParser.expr().voidexitNonQuotedStringAtom(OQLParser.NonQuotedStringAtomContext ctx)Exit a parse tree produced by thenonQuotedStringAtomlabeled alternative inOQLParser.atom().voidexitNotExpr(OQLParser.NotExprContext ctx)Exit a parse tree produced by thenotExprlabeled alternative inOQLParser.expr().voidexitOrExpr(OQLParser.OrExprContext ctx)Exit a parse tree produced by theorExprlabeled alternative inOQLParser.expr().voidexitParExpr(OQLParser.ParExprContext ctx)Exit a parse tree produced by theparExprlabeled alternative inOQLParser.atom().voidexitParse(OQLParser.ParseContext ctx)Exit a parse tree produced byOQLParser.parse().voidexitStringAtom(OQLParser.StringAtomContext ctx)Exit a parse tree produced by thestringAtomlabeled alternative inOQLParser.atom().
-
-
-
Method Detail
-
enterParse
void enterParse(OQLParser.ParseContext ctx)
Enter a parse tree produced byOQLParser.parse().- Parameters:
ctx- the parse tree
-
exitParse
void exitParse(OQLParser.ParseContext ctx)
Exit a parse tree produced byOQLParser.parse().- Parameters:
ctx- the parse tree
-
enterNotExpr
void enterNotExpr(OQLParser.NotExprContext ctx)
Enter a parse tree produced by thenotExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree
-
exitNotExpr
void exitNotExpr(OQLParser.NotExprContext ctx)
Exit a parse tree produced by thenotExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree
-
enterAtomExpr
void enterAtomExpr(OQLParser.AtomExprContext ctx)
Enter a parse tree produced by theatomExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree
-
exitAtomExpr
void exitAtomExpr(OQLParser.AtomExprContext ctx)
Exit a parse tree produced by theatomExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree
-
enterOrExpr
void enterOrExpr(OQLParser.OrExprContext ctx)
Enter a parse tree produced by theorExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree
-
exitOrExpr
void exitOrExpr(OQLParser.OrExprContext ctx)
Exit a parse tree produced by theorExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree
-
enterEqualityExpr
void enterEqualityExpr(OQLParser.EqualityExprContext ctx)
Enter a parse tree produced by theequalityExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree
-
exitEqualityExpr
void exitEqualityExpr(OQLParser.EqualityExprContext ctx)
Exit a parse tree produced by theequalityExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree
-
enterAndExpr
void enterAndExpr(OQLParser.AndExprContext ctx)
Enter a parse tree produced by theandExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree
-
exitAndExpr
void exitAndExpr(OQLParser.AndExprContext ctx)
Exit a parse tree produced by theandExprlabeled alternative inOQLParser.expr().- Parameters:
ctx- the parse tree
-
enterParExpr
void enterParExpr(OQLParser.ParExprContext ctx)
Enter a parse tree produced by theparExprlabeled alternative inOQLParser.atom().- Parameters:
ctx- the parse tree
-
exitParExpr
void exitParExpr(OQLParser.ParExprContext ctx)
Exit a parse tree produced by theparExprlabeled alternative inOQLParser.atom().- Parameters:
ctx- the parse tree
-
enterNonQuotedStringAtom
void enterNonQuotedStringAtom(OQLParser.NonQuotedStringAtomContext ctx)
Enter a parse tree produced by thenonQuotedStringAtomlabeled alternative inOQLParser.atom().- Parameters:
ctx- the parse tree
-
exitNonQuotedStringAtom
void exitNonQuotedStringAtom(OQLParser.NonQuotedStringAtomContext ctx)
Exit a parse tree produced by thenonQuotedStringAtomlabeled alternative inOQLParser.atom().- Parameters:
ctx- the parse tree
-
enterStringAtom
void enterStringAtom(OQLParser.StringAtomContext ctx)
Enter a parse tree produced by thestringAtomlabeled alternative inOQLParser.atom().- Parameters:
ctx- the parse tree
-
exitStringAtom
void exitStringAtom(OQLParser.StringAtomContext ctx)
Exit a parse tree produced by thestringAtomlabeled alternative inOQLParser.atom().- Parameters:
ctx- the parse tree
-
-