|
1 |
| |
|
2 |
| |
|
3 |
| package net.sourceforge.pmd.ast; |
|
4 |
| |
|
5 |
| public class ASTArguments extends SimpleNode { |
|
6 |
0
| public ASTArguments(int id) {
|
|
7 |
0
| super(id);
|
|
8 |
| } |
|
9 |
| |
|
10 |
459
| public ASTArguments(JavaParser p, int id) {
|
|
11 |
459
| super(p, id);
|
|
12 |
| } |
|
13 |
| |
|
14 |
| |
|
15 |
451
| public int getArgumentCount() {
|
|
16 |
451
| if (this.jjtGetNumChildren() == 0) {
|
|
17 |
210
| return 0;
|
|
18 |
| } |
|
19 |
241
| return this.jjtGetChild(0).jjtGetNumChildren();
|
|
20 |
| } |
|
21 |
| |
|
22 |
| |
|
23 |
| |
|
24 |
| |
|
25 |
1144
| public Object jjtAccept(JavaParserVisitor visitor, Object data) {
|
|
26 |
1144
| return visitor.visit(this, data);
|
|
27 |
| } |
|
28 |
| } |