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. UseVoidfor 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 TvisitInput(TLSFParser.InputContext ctx)Visit a parse tree produced byTLSFParser.input().TvisitOutput(TLSFParser.OutputContext ctx)Visit a parse tree produced byTLSFParser.output().TvisitSemantics(TLSFParser.SemanticsContext ctx)Visit a parse tree produced byTLSFParser.semantics().TvisitSpecification(TLSFParser.SpecificationContext ctx)Visit a parse tree produced byTLSFParser.specification().TvisitTarget(TLSFParser.TargetContext ctx)Visit a parse tree produced byTLSFParser.target().TvisitTlsf(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:
visitTlsfin 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:
visitSemanticsin 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:
visitTargetin 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:
visitInputin 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:
visitOutputin 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:
visitSpecificationin interfaceTLSFParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-