Coverage Report - biz.xsoftware.examples.advanced.User
 
Classes in this File Line Coverage Branch Coverage Complexity
User
N/A
N/A
1
 
 1  
 /*
 2  
  * Created on Jul 15, 2004
 3  
  *
 4  
  * To change the template for this generated file go to
 5  
  * Window - Preferences - Java - Code Generation - Code and Comments
 6  
  */
 7  
 package biz.xsoftware.examples.advanced;
 8  
 
 9  
 /**
 10  
  * An interface defining the more complex api we are mocking out.
 11  
  * 
 12  
  * @author Dean Hiller
 13  
  */
 14  
 public interface User {
 15  
         
 16  
         public String addTaskDone(String taskName);
 17  
         
 18  
 }