1 |
| |
2 |
| |
3 |
| package net.sourceforge.pmd.ast; |
4 |
| |
5 |
| public class ASTReferenceType extends SimpleJavaNode implements Dimensionable { |
6 |
0
| public ASTReferenceType(int id) {
|
7 |
0
| super(id);
|
8 |
| } |
9 |
| |
10 |
800
| public ASTReferenceType(JavaParser p, int id) {
|
11 |
800
| super(p, id);
|
12 |
| } |
13 |
| |
14 |
| |
15 |
| |
16 |
| |
17 |
| |
18 |
1991
| public Object jjtAccept(JavaParserVisitor visitor, Object data) {
|
19 |
1991
| return visitor.visit(this, data);
|
20 |
| } |
21 |
| |
22 |
| private int arrayDepth; |
23 |
| |
24 |
68
| public void bumpArrayDepth() {
|
25 |
68
| arrayDepth++;
|
26 |
| } |
27 |
| |
28 |
46
| public int getArrayDepth() {
|
29 |
46
| return arrayDepth;
|
30 |
| } |
31 |
| |
32 |
0
| public boolean isArray() {
|
33 |
0
| return arrayDepth > 0;
|
34 |
| } |
35 |
| |
36 |
| } |