1
2
3
4
5
6
7 package net.sourceforge.pmd.lang.plsql.ast;
8
9 public class ASTMethodDeclarator extends net.sourceforge.pmd.lang.plsql.ast.AbstractPLSQLNode{
10 public ASTMethodDeclarator(int id) {
11 super(id);
12 }
13
14 public ASTMethodDeclarator(PLSQLParser p, int id) {
15 super(p, id);
16 }
17
18
19
20 public Object jjtAccept(PLSQLParserVisitor visitor, Object data) {
21 return visitor.visit(this, data);
22 }
23
24 public int getParameterCount() {
25 return this.jjtGetChild(0).jjtGetNumChildren();
26 }
27 }
28