KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > pmd > jsp > ast > Node


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 JavaDoc jjtAccept(JspParserVisitor visitor, Object JavaDoc data);
16 }
17
Popular Tags