Class TLSFParserBaseVisitor<T>
- java.lang.Object
-
- org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
-
- owl.grammar.TLSFParserBaseVisitor<T>
-
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
,TLSFParserVisitor<T>
public class TLSFParserBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements TLSFParserVisitor<T>
This class provides an empty implementation ofTLSFParserVisitor
, which can be extended to create a visitor which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description TLSFParserBaseVisitor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
visitInput(TLSFParser.InputContext ctx)
Visit a parse tree produced byTLSFParser.input()
.T
visitOutput(TLSFParser.OutputContext ctx)
Visit a parse tree produced byTLSFParser.output()
.T
visitSemantics(TLSFParser.SemanticsContext ctx)
Visit a parse tree produced byTLSFParser.semantics()
.T
visitSpecification(TLSFParser.SpecificationContext ctx)
Visit a parse tree produced byTLSFParser.specification()
.T
visitTarget(TLSFParser.TargetContext ctx)
Visit a parse tree produced byTLSFParser.target()
.T
visitTlsf(TLSFParser.TlsfContext ctx)
Visit a parse tree produced byTLSFParser.tlsf()
.-
Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminal
-
-
-
-
Method Detail
-
visitTlsf
public T visitTlsf(TLSFParser.TlsfContext ctx)
Visit a parse tree produced byTLSFParser.tlsf()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitTlsf
in interfaceTLSFParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSemantics
public T visitSemantics(TLSFParser.SemanticsContext ctx)
Visit a parse tree produced byTLSFParser.semantics()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitSemantics
in interfaceTLSFParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTarget
public T visitTarget(TLSFParser.TargetContext ctx)
Visit a parse tree produced byTLSFParser.target()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitTarget
in interfaceTLSFParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitInput
public T visitInput(TLSFParser.InputContext ctx)
Visit a parse tree produced byTLSFParser.input()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitInput
in interfaceTLSFParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitOutput
public T visitOutput(TLSFParser.OutputContext ctx)
Visit a parse tree produced byTLSFParser.output()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitOutput
in interfaceTLSFParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSpecification
public T visitSpecification(TLSFParser.SpecificationContext ctx)
Visit a parse tree produced byTLSFParser.specification()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitSpecification
in interfaceTLSFParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
-