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 basic6 machinery for constructing the parent and child relationships7 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 }17