Package org.cqframework.cql.gen
Interface targetmapVisitor<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:
targetmapBaseVisitor
public interface targetmapVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
targetmapParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced bytargetmapParser.choiceMap().Visit a parse tree produced bytargetmapParser.choiceMapItem().Visit a parse tree produced bytargetmapParser.function().Visit a parse tree produced bytargetmapParser.identifier().Visit a parse tree produced bytargetmapParser.mappingTarget().Visit a parse tree produced bytargetmapParser.qualifiedIdentifier().Visit a parse tree produced bytargetmapParser.targetIndex().Visit a parse tree produced bytargetmapParser.targetIndexItem().Visit a parse tree produced bytargetmapParser.targetInvocation().Visit a parse tree produced bytargetmapParser.targetMap().Visit a parse tree produced bytargetmapParser.targetMapping().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitTargetMapping
Visit a parse tree produced bytargetmapParser.targetMapping().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTargetMap
Visit a parse tree produced bytargetmapParser.targetMap().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChoiceMap
Visit a parse tree produced bytargetmapParser.choiceMap().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChoiceMapItem
Visit a parse tree produced bytargetmapParser.choiceMapItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTargetIndex
Visit a parse tree produced bytargetmapParser.targetIndex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTargetIndexItem
Visit a parse tree produced bytargetmapParser.targetIndexItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMappingTarget
Visit a parse tree produced bytargetmapParser.mappingTarget().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTargetInvocation
Visit a parse tree produced bytargetmapParser.targetInvocation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualifiedIdentifier
Visit a parse tree produced bytargetmapParser.qualifiedIdentifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifier
Visit a parse tree produced bytargetmapParser.identifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunction
Visit a parse tree produced bytargetmapParser.function().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-