1 2 3 package net.sourceforge.pmd.ast; 4 5 public class ASTPackageDeclaration extends SimpleJavaNode { 6 public ASTPackageDeclaration(int id) { 7 super(id); 8 } 9 10 public ASTPackageDeclaration(JavaParser p, int id) { 11 super(p, id); 12 } 13 14 15 18 public Object jjtAccept(JavaParserVisitor visitor, Object data) { 19 return visitor.visit(this, data); 20 } 21 } 22 | Popular Tags |