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 void
enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
void
enterInput(TLSFParser.InputContext ctx)
Enter a parse tree produced byTLSFParser.input()
.void
enterOutput(TLSFParser.OutputContext ctx)
Enter a parse tree produced byTLSFParser.output()
.void
enterSemantics(TLSFParser.SemanticsContext ctx)
Enter a parse tree produced byTLSFParser.semantics()
.void
enterSpecification(TLSFParser.SpecificationContext ctx)
Enter a parse tree produced byTLSFParser.specification()
.void
enterTarget(TLSFParser.TargetContext ctx)
Enter a parse tree produced byTLSFParser.target()
.void
enterTlsf(TLSFParser.TlsfContext ctx)
Enter a parse tree produced byTLSFParser.tlsf()
.void
exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
void
exitInput(TLSFParser.InputContext ctx)
Exit a parse tree produced byTLSFParser.input()
.void
exitOutput(TLSFParser.OutputContext ctx)
Exit a parse tree produced byTLSFParser.output()
.void
exitSemantics(TLSFParser.SemanticsContext ctx)
Exit a parse tree produced byTLSFParser.semantics()
.void
exitSpecification(TLSFParser.SpecificationContext ctx)
Exit a parse tree produced byTLSFParser.specification()
.void
exitTarget(TLSFParser.TargetContext ctx)
Exit a parse tree produced byTLSFParser.target()
.void
exitTlsf(TLSFParser.TlsfContext ctx)
Exit a parse tree produced byTLSFParser.tlsf()
.void
visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
void
visitTerminal(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:
enterTlsf
in 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:
exitTlsf
in 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:
enterSemantics
in 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:
exitSemantics
in 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:
enterTarget
in 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:
exitTarget
in 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:
enterInput
in 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:
exitInput
in 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:
enterOutput
in 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:
exitOutput
in 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:
enterSpecification
in 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:
exitSpecification
in interfaceTLSFParserListener
- 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
-
-