Clover coverage report - baseCode - 0.2.5
Coverage timestamp: Tue Apr 12 2005 11:31:58 EDT
file stats: LOC: 24   Methods: 0
NCLOC: 7   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
Ranker.java - - - -
coverage
 1   
 package baseCode.algorithm;
 2   
 
 3   
 import cern.colt.list.DoubleArrayList;
 4   
 
 5   
 /**
 6   
  * 
 7   
  *
 8   
  * <hr>
 9   
  * <p>Copyright (c) 2004 Columbia University
 10   
  * @author pavlidis
 11   
  * @version $Id: Ranker.java,v 1.2 2004/08/17 21:17:40 pavlidis Exp $
 12   
  */
 13   
 public abstract class Ranker {
 14   
 
 15   
    public abstract Object best();
 16   
    
 17   
    public abstract Object worst();
 18   
    
 19   
    public abstract DoubleArrayList getScores();
 20   
    
 21   
    
 22   
    
 23   
 }
 24