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