01: /* Generated By:JJTree: Do not edit this line. Node.java */
02:
03: package net.sourceforge.pmd.jsp.ast;
04:
05: /* All AST nodes must implement this interface. It provides basic
06: machinery for constructing the parent and child relationships
07: between nodes. */
08:
09: public interface Node extends net.sourceforge.pmd.ast.Node {
10:
11: /**
12: * Accept the visitor. *
13: */
14: public Object jjtAccept(JspParserVisitor visitor, Object data);
15: }
|