Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
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  1977 public ASTConditionalExpression(JavaParser p, int id) {
 11  1977 super(p, id);
 12    }
 13   
 14    private boolean isTernary;
 15   
 16  6 public void setTernary() {
 17  6 isTernary = true;
 18    }
 19   
 20  3 public boolean isTernary() {
 21  3 return this.isTernary;
 22    }
 23   
 24    /**
 25    * Accept the visitor. *
 26    */
 27  17 public Object jjtAccept(JavaParserVisitor visitor, Object data) {
 28  17 return visitor.visit(this, data);
 29    }
 30    }