KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > codehaus > aspectwerkz > annotation > expression > ast > ASTRoot


1 /* Generated By:JJTree: Do not edit this line. ASTRoot.java */
2 package org.codehaus.aspectwerkz.annotation.expression.ast;
3
4 public class ASTRoot extends SimpleNode {
5     public ASTRoot(int id) {
6         super(id);
7     }
8
9     public ASTRoot(AnnotationParser p, int id) {
10         super(p, id);
11     }
12
13     /**
14      * Accept the visitor. *
15      */

16     public Object JavaDoc jjtAccept(AnnotationParserVisitor visitor, Object JavaDoc data) {
17         return visitor.visit(this, data);
18     }
19 }
Popular Tags