Package android.databinding.parser
Interface XMLParserVisitor<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:
XMLParserBaseVisitor
public interface XMLParserVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>This interface defines a complete generic visitor for a parse tree produced byXMLParser.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TvisitAttribute(XMLParser.AttributeContext ctx)Visit a parse tree produced byXMLParser.attribute().TvisitChardata(XMLParser.ChardataContext ctx)Visit a parse tree produced byXMLParser.chardata().TvisitContent(XMLParser.ContentContext ctx)Visit a parse tree produced byXMLParser.content().TvisitDocument(XMLParser.DocumentContext ctx)Visit a parse tree produced byXMLParser.document().TvisitElement(XMLParser.ElementContext ctx)Visit a parse tree produced byXMLParser.element().TvisitMisc(XMLParser.MiscContext ctx)Visit a parse tree produced byXMLParser.misc().TvisitProlog(XMLParser.PrologContext ctx)Visit a parse tree produced byXMLParser.prolog().TvisitReference(XMLParser.ReferenceContext ctx)Visit a parse tree produced byXMLParser.reference().
-
-
-
Method Detail
-
visitDocument
T visitDocument(XMLParser.DocumentContext ctx)
Visit a parse tree produced byXMLParser.document().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProlog
T visitProlog(XMLParser.PrologContext ctx)
Visit a parse tree produced byXMLParser.prolog().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitContent
T visitContent(XMLParser.ContentContext ctx)
Visit a parse tree produced byXMLParser.content().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElement
T visitElement(XMLParser.ElementContext ctx)
Visit a parse tree produced byXMLParser.element().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReference
T visitReference(XMLParser.ReferenceContext ctx)
Visit a parse tree produced byXMLParser.reference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttribute
T visitAttribute(XMLParser.AttributeContext ctx)
Visit a parse tree produced byXMLParser.attribute().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChardata
T visitChardata(XMLParser.ChardataContext ctx)
Visit a parse tree produced byXMLParser.chardata().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMisc
T visitMisc(XMLParser.MiscContext ctx)
Visit a parse tree produced byXMLParser.misc().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-