|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ASTElExpression | Line # 5 | 3 | 1 | 33.3% |
0.33333334
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
| (3) | |||
| Result | |||
|
0.33333334
|
test.net.sourceforge.pmd.jsp.ast.JspPageStyleTest.testElExpression
test.net.sourceforge.pmd.jsp.ast.JspPageStyleTest.testElExpression
|
1 PASS | |
|
0.33333334
|
test.net.sourceforge.pmd.jsp.ast.JspPageStyleTest.testElExpressionInAttribute
test.net.sourceforge.pmd.jsp.ast.JspPageStyleTest.testElExpressionInAttribute
|
1 PASS | |
|
0.33333334
|
test.net.sourceforge.pmd.jsp.rules.DontNestJsfInJstlIterationTest.testViolation
test.net.sourceforge.pmd.jsp.rules.DontNestJsfInJstlIterationTest.testViolation
|
1 PASS | |
| 1 | /* Generated By:JJTree: Do not edit this line. ASTElExpression.java */ | |
| 2 | ||
| 3 | package net.sourceforge.pmd.jsp.ast; | |
| 4 | ||
| 5 | public class ASTElExpression extends SimpleNode { | |
| 6 | 0 |
public ASTElExpression(int id) { |
| 7 | 0 | super(id); |
| 8 | } | |
| 9 | ||
| 10 | 3 |
public ASTElExpression(JspParser p, int id) { |
| 11 | 3 | super(p, id); |
| 12 | } | |
| 13 | ||
| 14 | ||
| 15 | /** | |
| 16 | * Accept the visitor. * | |
| 17 | */ | |
| 18 | 0 |
public Object jjtAccept(JspParserVisitor visitor, Object data) { |
| 19 | 0 | return visitor.visit(this, data); |
| 20 | } | |
| 21 | } | |
|
||||||||||