1 |
| |
2 |
| |
3 |
| package net.sourceforge.pmd.ast; |
4 |
| |
5 |
| import net.sourceforge.pmd.Rule; |
6 |
| |
7 |
| public class ASTTypeDeclaration extends SimpleJavaNode implements CanSuppressWarnings { |
8 |
0
| public ASTTypeDeclaration(int id) {
|
9 |
0
| super(id);
|
10 |
| } |
11 |
| |
12 |
1213
| public ASTTypeDeclaration(JavaParser p, int id) {
|
13 |
1213
| super(p, id);
|
14 |
| } |
15 |
| |
16 |
| |
17 |
495
| public boolean hasSuppressWarningsAnnotationFor(Rule rule) {
|
18 |
495
| for (int i = 0; i < jjtGetNumChildren(); i++) {
|
19 |
495
| if (jjtGetChild(i) instanceof ASTAnnotation) {
|
20 |
4
| ASTAnnotation a = (ASTAnnotation) jjtGetChild(i);
|
21 |
4
| if (a.suppresses(rule)) {
|
22 |
4
| return true;
|
23 |
| } |
24 |
| } |
25 |
| } |
26 |
491
| return false;
|
27 |
| } |
28 |
| |
29 |
| |
30 |
| |
31 |
| |
32 |
2961
| public Object jjtAccept(JavaParserVisitor visitor, Object data) {
|
33 |
2961
| return visitor.visit(this, data);
|
34 |
| } |
35 |
| } |