|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ASTAnnotationTypeDeclaration | Line # 5 | 3 | 1 | 66.7% |
0.6666667
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
| (2) | |||
| Result | |||
|
0.6666667
|
test.net.sourceforge.pmd.rules.imports.UnusedImportsRuleTest.testAnnotations
test.net.sourceforge.pmd.rules.imports.UnusedImportsRuleTest.testAnnotations
|
1 PASS | |
|
0.33333334
|
test.net.sourceforge.pmd.ast.JDKVersionTest.testVariousParserBugs
test.net.sourceforge.pmd.ast.JDKVersionTest.testVariousParserBugs
|
1 PASS | |
| 1 | /* Generated By:JJTree: Do not edit this line. ASTAnnotationTypeDeclaration.java */ | |
| 2 | ||
| 3 | package net.sourceforge.pmd.ast; | |
| 4 | ||
| 5 | public class ASTAnnotationTypeDeclaration extends AccessNode { | |
| 6 | 0 |
public ASTAnnotationTypeDeclaration(int id) { |
| 7 | 0 | super(id); |
| 8 | } | |
| 9 | ||
| 10 | 2 |
public ASTAnnotationTypeDeclaration(JavaParser p, int id) { |
| 11 | 2 | super(p, id); |
| 12 | } | |
| 13 | ||
| 14 | ||
| 15 | /** | |
| 16 | * Accept the visitor. * | |
| 17 | */ | |
| 18 | 3 |
public Object jjtAccept(JavaParserVisitor visitor, Object data) { |
| 19 | 3 | return visitor.visit(this, data); |
| 20 | } | |
| 21 | ||
| 22 | } | |
|
||||||||||