Clover coverage report - PMD - 3.9
Coverage timestamp: Tue Dec 19 2006 09:38:44 EST
file stats: LOC: 30   Methods: 5
NCLOC: 19   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ASTConditionalExpression.java - 80% 80% 80%
coverage coverage
 1    /* Generated By:JJTree: Do not edit this line. ASTConditionalExpression.java */
 2   
 3    package net.sourceforge.pmd.ast;
 4   
 5    public class ASTConditionalExpression extends SimpleJavaNode {
 6  0 public ASTConditionalExpression(int id) {
 7  0 super(id);
 8    }
 9   
 10  2355 public ASTConditionalExpression(JavaParser p, int id) {
 11  2355 super(p, id);
 12    }
 13   
 14    private boolean isTernary;
 15   
 16  9 public void setTernary() {
 17  9 isTernary = true;
 18    }
 19   
 20  3 public boolean isTernary() {
 21  3 return this.isTernary;
 22    }
 23   
 24    /**
 25    * Accept the visitor. *
 26    */
 27  26 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 28  26 return visitor.visit(this, data);
 29    }
 30    }