Package com.evolveum.axiom.lang.antlr
Interface AxiomVisitor<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:
AbstractAxiomAntlrVisitor
,AxiomAntlrVisitor2
,AxiomBaseVisitor
public interface AxiomVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
AxiomParser
.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byAxiomParser.argument()
.Visit a parse tree produced byAxiomParser.dataName()
.Visit a parse tree produced byAxiomParser.doubleQuoteString()
.Visit a parse tree produced byAxiomParser.file()
.Visit a parse tree produced byAxiomParser.infraName()
.Visit a parse tree produced byAxiomParser.item()
.Visit a parse tree produced byAxiomParser.itemName()
.Visit a parse tree produced byAxiomParser.itemValue()
.Visit a parse tree produced byAxiomParser.localName()
.Visit a parse tree produced byAxiomParser.multilineString()
.Visit a parse tree produced byAxiomParser.path()
.Visit a parse tree produced byAxiomParser.pathComponent()
.Visit a parse tree produced byAxiomParser.pathDataItem()
.Visit a parse tree produced byAxiomParser.pathInfraItem()
.Visit a parse tree produced byAxiomParser.pathValue()
.Visit a parse tree produced byAxiomParser.prefix()
.Visit a parse tree produced byAxiomParser.prefixedName()
.Visit a parse tree produced byAxiomParser.singleQuoteString()
.Visit a parse tree produced byAxiomParser.string()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitItemName
Visit a parse tree produced byAxiomParser.itemName()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDataName
Visit a parse tree produced byAxiomParser.dataName()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitInfraName
Visit a parse tree produced byAxiomParser.infraName()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitFile
Visit a parse tree produced byAxiomParser.file()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitItem
Visit a parse tree produced byAxiomParser.item()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitItemValue
Visit a parse tree produced byAxiomParser.itemValue()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPrefixedName
Visit a parse tree produced byAxiomParser.prefixedName()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPrefix
Visit a parse tree produced byAxiomParser.prefix()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLocalName
Visit a parse tree produced byAxiomParser.localName()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitArgument
Visit a parse tree produced byAxiomParser.argument()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitString
Visit a parse tree produced byAxiomParser.string()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSingleQuoteString
Visit a parse tree produced byAxiomParser.singleQuoteString()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDoubleQuoteString
Visit a parse tree produced byAxiomParser.doubleQuoteString()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMultilineString
Visit a parse tree produced byAxiomParser.multilineString()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPath
Visit a parse tree produced byAxiomParser.path()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPathComponent
Visit a parse tree produced byAxiomParser.pathComponent()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPathDataItem
Visit a parse tree produced byAxiomParser.pathDataItem()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPathInfraItem
Visit a parse tree produced byAxiomParser.pathInfraItem()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitPathValue
Visit a parse tree produced byAxiomParser.pathValue()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-