|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| ASTMethodDeclarator.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | /* Generated By:JJTree: Do not edit this line. ASTMethodDeclarator.java */ | |
| 2 | ||
| 3 | package net.sourceforge.pmd.ast; | |
| 4 | ||
| 5 | ||
| 6 | ||
| 7 | public class ASTMethodDeclarator extends SimpleNode { | |
| 8 | 1 | public ASTMethodDeclarator(int id) { |
| 9 | 1 | super(id); |
| 10 | } | |
| 11 | ||
| 12 | 731 | public ASTMethodDeclarator(JavaParser p, int id) { |
| 13 | 731 | super(p, id); |
| 14 | } | |
| 15 | ||
| 16 | 1023 | public int getParameterCount() { |
| 17 | 1023 | return this.jjtGetChild(0).jjtGetNumChildren(); |
| 18 | } | |
| 19 | ||
| 20 | /** | |
| 21 | * Accept the visitor. * | |
| 22 | */ | |
| 23 | 1720 | public Object jjtAccept(JavaParserVisitor visitor, Object data) { |
| 24 | 1720 | return visitor.visit(this, data); |
| 25 | } | |
| 26 | } |
|
||||||||||