Package com.evolveum.axiom.lang.antlr
Class AbstractAxiomAntlrVisitor<T>
java.lang.Object
org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
com.evolveum.axiom.lang.antlr.AxiomBaseVisitor<T>
com.evolveum.axiom.lang.antlr.AbstractAxiomAntlrVisitor<T>
- All Implemented Interfaces:
AxiomVisitor<T>
,org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- Direct Known Subclasses:
AxiomAntlrVisitor2
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected abstract AxiomStreamTarget<AxiomParser.PrefixedNameContext,
AxiomParser.ArgumentContext> delegate()
final T
Visit a parse tree produced byAxiomParser.argument()
.Visit a parse tree produced byAxiomParser.item()
.Visit a parse tree produced byAxiomParser.itemValue()
.Methods inherited from class com.evolveum.axiom.lang.antlr.AxiomBaseVisitor
visitDataName, visitDoubleQuoteString, visitFile, visitInfraName, visitItemName, visitLocalName, visitMultilineString, visitPath, visitPathComponent, visitPathDataItem, visitPathInfraItem, visitPathValue, visitPrefix, visitPrefixedName, visitSingleQuoteString, visitString
Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminal
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Constructor Details
-
AbstractAxiomAntlrVisitor
-
-
Method Details
-
delegate
protected abstract AxiomStreamTarget<AxiomParser.PrefixedNameContext,AxiomParser.ArgumentContext> delegate() -
visitItem
Description copied from class:AxiomBaseVisitor
Visit a parse tree produced byAxiomParser.item()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitItem
in interfaceAxiomVisitor<T>
- Overrides:
visitItem
in classAxiomBaseVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitItemValue
Description copied from class:AxiomBaseVisitor
Visit a parse tree produced byAxiomParser.itemValue()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitItemValue
in interfaceAxiomVisitor<T>
- Overrides:
visitItemValue
in classAxiomBaseVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitArgument
Description copied from class:AxiomBaseVisitor
Visit a parse tree produced byAxiomParser.argument()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitArgument
in interfaceAxiomVisitor<T>
- Overrides:
visitArgument
in classAxiomBaseVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-