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. ASTCompilationUnit.java */ 5 6 package net.sourceforge.pmd.lang.jsp.ast; 7 8 import net.sourceforge.pmd.lang.ast.RootNode; 9 10 public class ASTCompilationUnit extends AbstractJspNode implements RootNode { 11 public ASTCompilationUnit(int id) { 12 super(id); 13 } 14 15 public ASTCompilationUnit(JspParser p, int id) { 16 super(p, id); 17 } 18 19 20 /** 21 * Accept the visitor. * 22 */ 23 public Object jjtAccept(JspParserVisitor visitor, Object data) { 24 return visitor.visit(this, data); 25 } 26 }