/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html */ /* Generated By:JJTree: Do not edit this line. ASTMethodDeclarator.java */ package net.sourceforge.pmd.lang.java.ast; public class ASTMethodDeclarator extends AbstractJavaNode { public ASTMethodDeclarator(int id) { super(id); } public ASTMethodDeclarator(JavaParser p, int id) { super(p, id); } public int getParameterCount() { return this.jjtGetChild(0).jjtGetNumChildren(); } /** * Accept the visitor. * */ public Object jjtAccept(JavaParserVisitor visitor, Object data) { return visitor.visit(this, data); } }