ASTJspComment.java
01 /* Generated By:JJTree: Do not edit this line. ASTJspComment.java */
02 
03 package net.sourceforge.pmd.lang.jsp.ast;
04 
05 public class ASTJspComment extends AbstractJspNode {
06     public ASTJspComment(int id) {
07         super(id);
08     }
09 
10     public ASTJspComment(JspParser p, int id) {
11         super(p, id);
12     }
13 
14 
15     /**
16      * Accept the visitor. *
17      */
18     public Object jjtAccept(JspParserVisitor visitor, Object data) {
19         return visitor.visit(this, data);
20     }
21 }