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