Clover coverage report - Flock Flock - 0.7-dev
Coverage timestamp: Thu Jan 30 2003 01:35:37 EST
file stats: LOC: 14   Methods: 0
NCLOC: 7   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
ITreeNode.java - - - -
 1   
 package net.sf.flock.tree;
 2   
 
 3   
 import java.util.Collection;
 4   
 
 5   
 public interface ITreeNode {
 6   
 
 7   
     public String getId();
 8   
 
 9   
     public String getFullPath();
 10   
 
 11   
     public Collection getChildren();
 12   
 
 13   
 }
 14