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,XmlParserVisitor
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
-
-
-
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
-
visitXmldecl
T visitXmldecl(XMLParser.XmldeclContext ctx)
Visit a parse tree produced byXMLParser.xmldecl().- 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
-
visitDoctypedecl
T visitDoctypedecl(XMLParser.DoctypedeclContext ctx)
Visit a parse tree produced byXMLParser.doctypedecl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntsubset
T visitIntsubset(XMLParser.IntsubsetContext ctx)
Visit a parse tree produced byXMLParser.intsubset().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMarkupdecl
T visitMarkupdecl(XMLParser.MarkupdeclContext ctx)
Visit a parse tree produced byXMLParser.markupdecl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeclSep
T visitDeclSep(XMLParser.DeclSepContext ctx)
Visit a parse tree produced byXMLParser.declSep().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExternalid
T visitExternalid(XMLParser.ExternalidContext ctx)
Visit a parse tree produced byXMLParser.externalid().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcessinginstruction
T visitProcessinginstruction(XMLParser.ProcessinginstructionContext ctx)
Visit a parse tree produced byXMLParser.processinginstruction().- 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
-
-