KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > velocity > runtime > parser > node > ASTIncludeStatement


1 /* Generated By:JJTree: Do not edit this line. ASTIncludeStatement.java */
2
3 package org.apache.velocity.runtime.parser.node;
4
5 import org.apache.velocity.runtime.parser.*;
6
7 public class ASTIncludeStatement extends SimpleNode
8 {
9     public ASTIncludeStatement(int id)
10     {
11         super(id);
12     }
13
14     public ASTIncludeStatement(Parser p, int id)
15     {
16         super(p, id);
17     }
18
19     /** Accept the visitor. **/
20     public Object JavaDoc jjtAccept(ParserVisitor visitor, Object JavaDoc data)
21     {
22         return visitor.visit(this, data);
23     }
24 }
25
Popular Tags