|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ASTMethodDeclarator.java | - | 100% | 100% | 100% |
|
1 | /* Generated By:JJTree: Do not edit this line. ASTMethodDeclarator.java */ | |
2 | ||
3 | package net.sourceforge.pmd.ast; | |
4 | ||
5 | ||
6 | public class ASTMethodDeclarator extends SimpleJavaNode { | |
7 | 1 | public ASTMethodDeclarator(int id) { |
8 | 1 | super(id); |
9 | } | |
10 | ||
11 | 983 | public ASTMethodDeclarator(JavaParser p, int id) { |
12 | 983 | super(p, id); |
13 | } | |
14 | ||
15 | 1399 | public int getParameterCount() { |
16 | 1399 | return this.jjtGetChild(0).jjtGetNumChildren(); |
17 | } | |
18 | ||
19 | /** | |
20 | * Accept the visitor. * | |
21 | */ | |
22 | 2374 | public Object jjtAccept(JavaParserVisitor visitor, Object data) { |
23 | 2374 | return visitor.visit(this, data); |
24 | } | |
25 | } |
|