Package owl.grammar
Class TLSFParserBaseListener
- java.lang.Object
-
- owl.grammar.TLSFParserBaseListener
-
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeListener,TLSFParserListener
public class TLSFParserBaseListener extends Object implements TLSFParserListener
This class provides an empty implementation ofTLSFParserListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description TLSFParserBaseListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)voidenterInput(TLSFParser.InputContext ctx)Enter a parse tree produced byTLSFParser.input().voidenterOutput(TLSFParser.OutputContext ctx)Enter a parse tree produced byTLSFParser.output().voidenterSemantics(TLSFParser.SemanticsContext ctx)Enter a parse tree produced byTLSFParser.semantics().voidenterSpecification(TLSFParser.SpecificationContext ctx)Enter a parse tree produced byTLSFParser.specification().voidenterTarget(TLSFParser.TargetContext ctx)Enter a parse tree produced byTLSFParser.target().voidenterTlsf(TLSFParser.TlsfContext ctx)Enter a parse tree produced byTLSFParser.tlsf().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)voidexitInput(TLSFParser.InputContext ctx)Exit a parse tree produced byTLSFParser.input().voidexitOutput(TLSFParser.OutputContext ctx)Exit a parse tree produced byTLSFParser.output().voidexitSemantics(TLSFParser.SemanticsContext ctx)Exit a parse tree produced byTLSFParser.semantics().voidexitSpecification(TLSFParser.SpecificationContext ctx)Exit a parse tree produced byTLSFParser.specification().voidexitTarget(TLSFParser.TargetContext ctx)Exit a parse tree produced byTLSFParser.target().voidexitTlsf(TLSFParser.TlsfContext ctx)Exit a parse tree produced byTLSFParser.tlsf().voidvisitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)voidvisitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
-
-
Method Detail
-
enterTlsf
public void enterTlsf(TLSFParser.TlsfContext ctx)
Enter a parse tree produced byTLSFParser.tlsf().The default implementation does nothing.
- Specified by:
enterTlsfin interfaceTLSFParserListener- Parameters:
ctx- the parse tree
-
exitTlsf
public void exitTlsf(TLSFParser.TlsfContext ctx)
Exit a parse tree produced byTLSFParser.tlsf().The default implementation does nothing.
- Specified by:
exitTlsfin interfaceTLSFParserListener- Parameters:
ctx- the parse tree
-
enterSemantics
public void enterSemantics(TLSFParser.SemanticsContext ctx)
Enter a parse tree produced byTLSFParser.semantics().The default implementation does nothing.
- Specified by:
enterSemanticsin interfaceTLSFParserListener- Parameters:
ctx- the parse tree
-
exitSemantics
public void exitSemantics(TLSFParser.SemanticsContext ctx)
Exit a parse tree produced byTLSFParser.semantics().The default implementation does nothing.
- Specified by:
exitSemanticsin interfaceTLSFParserListener- Parameters:
ctx- the parse tree
-
enterTarget
public void enterTarget(TLSFParser.TargetContext ctx)
Enter a parse tree produced byTLSFParser.target().The default implementation does nothing.
- Specified by:
enterTargetin interfaceTLSFParserListener- Parameters:
ctx- the parse tree
-
exitTarget
public void exitTarget(TLSFParser.TargetContext ctx)
Exit a parse tree produced byTLSFParser.target().The default implementation does nothing.
- Specified by:
exitTargetin interfaceTLSFParserListener- Parameters:
ctx- the parse tree
-
enterInput
public void enterInput(TLSFParser.InputContext ctx)
Enter a parse tree produced byTLSFParser.input().The default implementation does nothing.
- Specified by:
enterInputin interfaceTLSFParserListener- Parameters:
ctx- the parse tree
-
exitInput
public void exitInput(TLSFParser.InputContext ctx)
Exit a parse tree produced byTLSFParser.input().The default implementation does nothing.
- Specified by:
exitInputin interfaceTLSFParserListener- Parameters:
ctx- the parse tree
-
enterOutput
public void enterOutput(TLSFParser.OutputContext ctx)
Enter a parse tree produced byTLSFParser.output().The default implementation does nothing.
- Specified by:
enterOutputin interfaceTLSFParserListener- Parameters:
ctx- the parse tree
-
exitOutput
public void exitOutput(TLSFParser.OutputContext ctx)
Exit a parse tree produced byTLSFParser.output().The default implementation does nothing.
- Specified by:
exitOutputin interfaceTLSFParserListener- Parameters:
ctx- the parse tree
-
enterSpecification
public void enterSpecification(TLSFParser.SpecificationContext ctx)
Enter a parse tree produced byTLSFParser.specification().The default implementation does nothing.
- Specified by:
enterSpecificationin interfaceTLSFParserListener- Parameters:
ctx- the parse tree
-
exitSpecification
public void exitSpecification(TLSFParser.SpecificationContext ctx)
Exit a parse tree produced byTLSFParser.specification().The default implementation does nothing.
- Specified by:
exitSpecificationin interfaceTLSFParserListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-