01 /* Generated By:JJTree: Do not edit this line. ASTMethodDeclarator.java */
02
03 package net.sourceforge.pmd.lang.java.ast;
04
05
06 public class ASTMethodDeclarator extends AbstractJavaNode {
07 public ASTMethodDeclarator(int id) {
08 super(id);
09 }
10
11 public ASTMethodDeclarator(JavaParser p, int id) {
12 super(p, id);
13 }
14
15 public int getParameterCount() {
16 return this.jjtGetChild(0).jjtGetNumChildren();
17 }
18
19 /**
20 * Accept the visitor. *
21 */
22 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
23 return visitor.visit(this, data);
24 }
25 }
|