Clover coverage report - baseCode - 0.2.5
Coverage timestamp: Tue Apr 12 2005 11:31:58 EDT
file stats: LOC: 22   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
Distancer.java - - - -
coverage
 1   
 package baseCode.algorithm.learning.unsupervised.cluster;
 2   
 
 3   
 import baseCode.common.Distanceable;
 4   
 
 5   
 /**
 6   
  * <hr>
 7   
  * <p>
 8   
  * Copyright (c) 2004 Columbia University
 9   
  * 
 10   
  * @author pavlidis
 11   
  * @version $Id: Distancer.java,v 1.2 2004/08/02 15:03:43 pavlidis Exp $
 12   
  */
 13   
 public interface Distancer {
 14   
 
 15   
    /**
 16   
     * @param a
 17   
     * @param b
 18   
     * @return
 19   
     */
 20   
    public double distance( Distanceable a, Distanceable b );
 21   
 
 22   
 }