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
by
XMLParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byXMLParser.attribute().Visit a parse tree produced byXMLParser.chardata().Visit a parse tree produced byXMLParser.content().Visit a parse tree produced byXMLParser.declSep().Visit a parse tree produced byXMLParser.doctypedecl().Visit a parse tree produced byXMLParser.document().Visit a parse tree produced byXMLParser.element().Visit a parse tree produced byXMLParser.externalid().Visit a parse tree produced byXMLParser.intsubset().Visit a parse tree produced byXMLParser.jspcomment().Visit a parse tree produced byXMLParser.jspdeclaration().Visit a parse tree produced byXMLParser.jspdirective().Visit a parse tree produced byXMLParser.jspexpression().Visit a parse tree produced byXMLParser.jspscriptlet().Visit a parse tree produced byXMLParser.markupdecl().Visit a parse tree produced byXMLParser.misc().Visit a parse tree produced byXMLParser.processinginstruction().Visit a parse tree produced byXMLParser.prolog().Visit a parse tree produced byXMLParser.reference().Visit a parse tree produced byXMLParser.xmldecl().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitDocument
Visit a parse tree produced byXMLParser.document().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProlog
Visit a parse tree produced byXMLParser.prolog().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmldecl
Visit a parse tree produced byXMLParser.xmldecl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMisc
Visit a parse tree produced byXMLParser.misc().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoctypedecl
Visit a parse tree produced byXMLParser.doctypedecl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntsubset
Visit a parse tree produced byXMLParser.intsubset().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMarkupdecl
Visit a parse tree produced byXMLParser.markupdecl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeclSep
Visit a parse tree produced byXMLParser.declSep().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExternalid
Visit a parse tree produced byXMLParser.externalid().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcessinginstruction
Visit a parse tree produced byXMLParser.processinginstruction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitContent
Visit a parse tree produced byXMLParser.content().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElement
Visit a parse tree produced byXMLParser.element().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJspdirective
Visit a parse tree produced byXMLParser.jspdirective().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJspscriptlet
Visit a parse tree produced byXMLParser.jspscriptlet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJspexpression
Visit a parse tree produced byXMLParser.jspexpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJspdeclaration
Visit a parse tree produced byXMLParser.jspdeclaration().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJspcomment
Visit a parse tree produced byXMLParser.jspcomment().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReference
Visit a parse tree produced byXMLParser.reference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttribute
Visit a parse tree produced byXMLParser.attribute().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChardata
Visit a parse tree produced byXMLParser.chardata().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-