1 /* Generated By:JJTree: Do not edit this line. ASTJspComment.java */2 3 package net.sourceforge.pmd.jsp.ast;4 5 public class ASTJspComment extends SimpleNode {6 public ASTJspComment(int id) {7 super(id);8 }9 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 }22