Package org.fhirfrog.frog.tph.grammar
Interface TPHVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
TPHASTBuilder,TPHBaseVisitor
public interface TPHVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
TPHParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byTPHParser.depends().Visit a parse tree produced byTPHParser.description().Visit a parse tree produced byTPHParser.doc().Visit a parse tree produced byTPHParser.id().Visit a parse tree produced byTPHParser.name().Visit a parse tree produced byTPHParser.reference().Visit a parse tree produced byTPHParser.run().Visit a parse tree produced byTPHParser.sequence().Visit a parse tree produced byTPHParser.status().Visit a parse tree produced byTPHParser.testCase().Visit a parse tree produced byTPHParser.testCaseProperty().Visit a parse tree produced byTPHParser.testData().Visit a parse tree produced byTPHParser.testPlan().Visit a parse tree produced byTPHParser.title().Visit a parse tree produced byTPHParser.tpMetadata().Visit a parse tree produced byTPHParser.url().Visit a parse tree produced byTPHParser.version().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitDoc
Visit a parse tree produced byTPHParser.doc().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTestPlan
Visit a parse tree produced byTPHParser.testPlan().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTpMetadata
Visit a parse tree produced byTPHParser.tpMetadata().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTestCase
Visit a parse tree produced byTPHParser.testCase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTestCaseProperty
Visit a parse tree produced byTPHParser.testCaseProperty().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSequence
Visit a parse tree produced byTPHParser.sequence().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDepends
Visit a parse tree produced byTPHParser.depends().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRun
Visit a parse tree produced byTPHParser.run().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTestData
Visit a parse tree produced byTPHParser.testData().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitId
Visit a parse tree produced byTPHParser.id().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTitle
Visit a parse tree produced byTPHParser.title().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDescription
Visit a parse tree produced byTPHParser.description().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatus
Visit a parse tree produced byTPHParser.status().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUrl
Visit a parse tree produced byTPHParser.url().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVersion
Visit a parse tree produced byTPHParser.version().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReference
Visit a parse tree produced byTPHParser.reference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitName
Visit a parse tree produced byTPHParser.name().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-