Coverage Report - net.sf.jolene.html.ICollection
 
Classes in this File Line Coverage Branch Coverage Complexity
ICollection
N/A
N/A
0
 
 1  
 package net.sf.jolene.html;
 2  
 
 3  
 import java.util.Collection;
 4  
 import java.util.Set;
 5  
 
 6  
 /**
 7  
  * Comments for ICollection go here.
 8  
  *
 9  
  * @author Dan Howard
 10  
  * @since Aug 3, 2008 6:12:40 PM
 11  
  */
 12  
 public interface ICollection {
 13  
 
 14  
     Set<String> keySet();
 15  
     //Collection<String> values(); // needed???? nah....
 16  
     void clear();
 17  
 }