-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTMLStructureVisitor.java
More file actions
48 lines (47 loc) · 1.62 KB
/
Copy pathHTMLStructureVisitor.java
File metadata and controls
48 lines (47 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Generated from HTMLStructure.g4 by ANTLR 4.13.2
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
/**
* This interface defines a complete generic visitor for a parse tree produced
* by {@link HTMLStructureParser}.
*
* @param <T> The return type of the visit operation. Use {@link Void} for
* operations with no return type.
*/
public interface HTMLStructureVisitor<T> extends ParseTreeVisitor<T> {
/**
* Visit a parse tree produced by {@link HTMLStructureParser#htmlDoc}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitHtmlDoc(HTMLStructureParser.HtmlDocContext ctx);
/**
* Visit a parse tree produced by {@link HTMLStructureParser#element}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitElement(HTMLStructureParser.ElementContext ctx);
/**
* Visit a parse tree produced by {@link HTMLStructureParser#tagElement}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitTagElement(HTMLStructureParser.TagElementContext ctx);
/**
* Visit a parse tree produced by {@link HTMLStructureParser#attributeList}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitAttributeList(HTMLStructureParser.AttributeListContext ctx);
/**
* Visit a parse tree produced by {@link HTMLStructureParser#attribute}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitAttribute(HTMLStructureParser.AttributeContext ctx);
/**
* Visit a parse tree produced by {@link HTMLStructureParser#textElement}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitTextElement(HTMLStructureParser.TextElementContext ctx);
}