Clover coverage report - Flock Flock - 0.7-dev
Coverage timestamp: Thu Jan 30 2003 01:35:37 EST
file stats: LOC: 16   Methods: 0
NCLOC: 6   Classes: 1
This license of Clover is provided to support the development of Flock only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover.
 
 Source file Conditionals Statements Methods TOTAL
FilterI.java - - - -
 1   
 package net.sf.flock;
 2   
 
 3   
 import java.io.Serializable;
 4   
 import java.util.List;
 5   
 
 6   
 /**
 7   
  * 
 8   
  * @version $Revision$
 9   
  * @author $Author$
 10   
  */
 11   
 public interface FilterI extends Serializable {
 12   
 
 13   
     public List filter(List items);
 14   
 
 15   
 }
 16