|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
Node.java | - | - | - | - |
|
1 | /* Generated By:JJTree: Do not edit this line. Node.java */ | |
2 | ||
3 | package net.sourceforge.pmd.jsp.ast; | |
4 | ||
5 | /* All AST nodes must implement this interface. It provides basic | |
6 | machinery for constructing the parent and child relationships | |
7 | between nodes. */ | |
8 | ||
9 | public interface Node extends net.sourceforge.pmd.ast.Node { | |
10 | ||
11 | ||
12 | /** | |
13 | * Accept the visitor. * | |
14 | */ | |
15 | public Object jjtAccept(JspParserVisitor visitor, Object data); | |
16 | } |
|