Package owl.grammar
Interface TLSFParserVisitor<T>
-
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
TLSFParserBaseVisitor
public interface TLSFParserVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced byTLSFParser
.
-
-
Method Summary
All Methods Instance Methods Abstract 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()
.
-
-
-
Method Detail
-
visitTlsf
T visitTlsf(TLSFParser.TlsfContext ctx)
Visit a parse tree produced byTLSFParser.tlsf()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSemantics
T visitSemantics(TLSFParser.SemanticsContext ctx)
Visit a parse tree produced byTLSFParser.semantics()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTarget
T visitTarget(TLSFParser.TargetContext ctx)
Visit a parse tree produced byTLSFParser.target()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitInput
T visitInput(TLSFParser.InputContext ctx)
Visit a parse tree produced byTLSFParser.input()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitOutput
T visitOutput(TLSFParser.OutputContext ctx)
Visit a parse tree produced byTLSFParser.output()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSpecification
T visitSpecification(TLSFParser.SpecificationContext ctx)
Visit a parse tree produced byTLSFParser.specification()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
-