Package com.inrupt.client.parser
Class WacAllowBaseListener
java.lang.Object
com.inrupt.client.parser.WacAllowBaseListener
- All Implemented Interfaces:
WacAllowListener
,ParseTreeListener
This class provides an empty implementation of
WacAllowListener
,
which can be extended to create a listener which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
void
Enter a parse tree produced byWacAllowParser.wacAllow()
.void
void
Exit a parse tree produced byWacAllowParser.wacAllow()
.void
visitErrorNode
(ErrorNode node) void
visitTerminal
(TerminalNode node)
-
Constructor Details
-
WacAllowBaseListener
public WacAllowBaseListener()
-
-
Method Details
-
enterWacAllow
Enter a parse tree produced byWacAllowParser.wacAllow()
.The default implementation does nothing.
- Specified by:
enterWacAllow
in interfaceWacAllowListener
- Parameters:
ctx
- the parse tree
-
exitWacAllow
Exit a parse tree produced byWacAllowParser.wacAllow()
.The default implementation does nothing.
- Specified by:
exitWacAllow
in interfaceWacAllowListener
- Parameters:
ctx
- the parse tree
-
enterEveryRule
The default implementation does nothing.
- Specified by:
enterEveryRule
in interfaceParseTreeListener
-
exitEveryRule
The default implementation does nothing.
- Specified by:
exitEveryRule
in interfaceParseTreeListener
-
visitTerminal
The default implementation does nothing.
- Specified by:
visitTerminal
in interfaceParseTreeListener
-
visitErrorNode
The default implementation does nothing.
- Specified by:
visitErrorNode
in interfaceParseTreeListener
-