1 |
| |
2 |
| |
3 |
| |
4 |
| package net.sourceforge.pmd.rules.design; |
5 |
| |
6 |
| import net.sourceforge.pmd.ast.SimpleJavaNode; |
7 |
| import net.sourceforge.pmd.stat.DataPoint; |
8 |
| import net.sourceforge.pmd.stat.StatisticalRule; |
9 |
| |
10 |
| |
11 |
| |
12 |
| |
13 |
| |
14 |
| |
15 |
| |
16 |
| |
17 |
| |
18 |
| |
19 |
| |
20 |
| public class ExcessiveLengthRule extends StatisticalRule { |
21 |
| private Class nodeClass; |
22 |
| |
23 |
27
| public ExcessiveLengthRule(Class nodeClass) {
|
24 |
27
| this.nodeClass = nodeClass;
|
25 |
| } |
26 |
| |
27 |
644
| public Object visit(SimpleJavaNode node, Object data) {
|
28 |
644
| if (nodeClass.isInstance(node)) {
|
29 |
8
| DataPoint point = new DataPoint();
|
30 |
8
| point.setNode(node);
|
31 |
8
| point.setScore(1.0 * (node.getEndLine() - node.getBeginLine()));
|
32 |
8
| point.setMessage(getMessage());
|
33 |
8
| addDataPoint(point);
|
34 |
| } |
35 |
| |
36 |
644
| return node.childrenAccept(this, data);
|
37 |
| } |
38 |
| } |
39 |
| |
40 |
| |