1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 /* Generated By:JJTree: Do not edit this line. ASTJspDocument.java */ 5 6 package net.sourceforge.pmd.lang.jsp.ast; 7 8 public class ASTJspDocument extends AbstractJspNode { 9 public ASTJspDocument(int id) { 10 super(id); 11 } 12 13 public ASTJspDocument(JspParser p, int id) { 14 super(p, id); 15 } 16 17 18 /** 19 * Accept the visitor. * 20 */ 21 public Object jjtAccept(JspParserVisitor visitor, Object data) { 22 return visitor.visit(this, data); 23 } 24 }