android.databinding.parser
Interface XMLParserVisitor<Result>

Type Parameters:
Result - The return type of the visit operation. Use Void for operations with no return type.
All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<Result>
All Known Implementing Classes:
XMLParserBaseVisitor

public interface XMLParserVisitor<Result>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<Result>

This interface defines a complete generic visitor for a parse tree produced by XMLParser.


Method Summary
 Result visitAttribute(XMLParser.AttributeContext ctx)
          Visit a parse tree produced by XMLParser.attribute().
 Result visitChardata(XMLParser.ChardataContext ctx)
          Visit a parse tree produced by XMLParser.chardata().
 Result visitContent(XMLParser.ContentContext ctx)
          Visit a parse tree produced by XMLParser.content().
 Result visitDocument(XMLParser.DocumentContext ctx)
          Visit a parse tree produced by XMLParser.document().
 Result visitElement(XMLParser.ElementContext ctx)
          Visit a parse tree produced by XMLParser.element().
 Result visitMisc(XMLParser.MiscContext ctx)
          Visit a parse tree produced by XMLParser.misc().
 Result visitProlog(XMLParser.PrologContext ctx)
          Visit a parse tree produced by XMLParser.prolog().
 Result visitReference(XMLParser.ReferenceContext ctx)
          Visit a parse tree produced by XMLParser.reference().
 
Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
 

Method Detail

visitContent

Result visitContent(@NotNull
                    XMLParser.ContentContext ctx)
Visit a parse tree produced by XMLParser.content().

Parameters:
ctx - the parse tree
Returns:
the visitor result

visitElement

Result visitElement(@NotNull
                    XMLParser.ElementContext ctx)
Visit a parse tree produced by XMLParser.element().

Parameters:
ctx - the parse tree
Returns:
the visitor result

visitProlog

Result visitProlog(@NotNull
                   XMLParser.PrologContext ctx)
Visit a parse tree produced by XMLParser.prolog().

Parameters:
ctx - the parse tree
Returns:
the visitor result

visitDocument

Result visitDocument(@NotNull
                     XMLParser.DocumentContext ctx)
Visit a parse tree produced by XMLParser.document().

Parameters:
ctx - the parse tree
Returns:
the visitor result

visitAttribute

Result visitAttribute(@NotNull
                      XMLParser.AttributeContext ctx)
Visit a parse tree produced by XMLParser.attribute().

Parameters:
ctx - the parse tree
Returns:
the visitor result

visitChardata

Result visitChardata(@NotNull
                     XMLParser.ChardataContext ctx)
Visit a parse tree produced by XMLParser.chardata().

Parameters:
ctx - the parse tree
Returns:
the visitor result

visitReference

Result visitReference(@NotNull
                      XMLParser.ReferenceContext ctx)
Visit a parse tree produced by XMLParser.reference().

Parameters:
ctx - the parse tree
Returns:
the visitor result

visitMisc

Result visitMisc(@NotNull
                 XMLParser.MiscContext ctx)
Visit a parse tree produced by XMLParser.misc().

Parameters:
ctx - the parse tree
Returns:
the visitor result