Clover coverage report - baseCode - 0.2.5
Coverage timestamp: Tue Apr 12 2005 11:31:58 EDT
file stats: LOC: 21   Methods: 0
NCLOC: 4   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
DensityGenerator.java - - - -
coverage
 1   
 package baseCode.math.distribution;
 2   
 
 3   
 /**
 4   
  * An interface that describes a class that can produce values from a particular probability density.
 5   
  *
 6   
  * <hr>
 7   
  * <p>Copyright (c) 2004 Columbia University
 8   
  * @author pavlidis
 9   
  * @version $Id: DensityGenerator.java,v 1.1 2004/12/31 01:14:48 pavlidis Exp $
 10   
  */
 11   
 public interface DensityGenerator {
 12   
 
 13   
    /**
 14   
     * 
 15   
     * @param value
 16   
     * @return The value of the density at x
 17   
     */
 18   
    public double density(double x);
 19   
  
 20   
 }
 21