Interface TierDataVisitor<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:
TierDataBaseVisitor
public interface TierDataVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
TierDataParser
.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byTierDataParser.comment()
.Visit a parse tree produced byTierDataParser.element()
.Visit a parse tree produced byTierDataParser.href()
.Visit a parse tree produced byTierDataParser.internal_media()
.Visit a parse tree produced byTierDataParser.label()
.Visit a parse tree produced byTierDataParser.link()
.Visit a parse tree produced byTierDataParser.number()
.Visit a parse tree produced byTierDataParser.tierdata()
.Visit a parse tree produced byTierDataParser.time_in_minutes_seconds()
.Visit a parse tree produced byTierDataParser.usertier()
.Visit a parse tree produced byTierDataParser.word()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitUsertier
Visit a parse tree produced byTierDataParser.usertier()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTierdata
Visit a parse tree produced byTierDataParser.tierdata()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitElement
Visit a parse tree produced byTierDataParser.element()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWord
Visit a parse tree produced byTierDataParser.word()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitComment
Visit a parse tree produced byTierDataParser.comment()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitInternal_media
Visit a parse tree produced byTierDataParser.internal_media()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLabel
Visit a parse tree produced byTierDataParser.label()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLink
Visit a parse tree produced byTierDataParser.link()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitHref
Visit a parse tree produced byTierDataParser.href()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTime_in_minutes_seconds
Visit a parse tree produced byTierDataParser.time_in_minutes_seconds()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNumber
Visit a parse tree produced byTierDataParser.number()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-