|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ASTCatchStatement.java | - | 66.7% | 66.7% | 66.7% |
|
1 | /* Generated By:JJTree: Do not edit this line. ASTCatchStatement.java */ | |
2 | ||
3 | package net.sourceforge.pmd.ast; | |
4 | ||
5 | public class ASTCatchStatement extends SimpleNode { | |
6 | 0 | public ASTCatchStatement(int id) { |
7 | 0 | super(id); |
8 | } | |
9 | ||
10 | 65 | public ASTCatchStatement(JavaParser p, int id) { |
11 | 65 | super(p, id); |
12 | } | |
13 | ||
14 | ||
15 | /** Accept the visitor. **/ | |
16 | 158 | public Object jjtAccept(JavaParserVisitor visitor, Object data) { |
17 | 158 | return visitor.visit(this, data); |
18 | } | |
19 | } |
|