Coverage Report - net.spy.digg.User
 
Classes in this File Line Coverage Branch Coverage Complexity
User
N/A
N/A
1
 
 1  
 package net.spy.digg;
 2  
 
 3  
 /**
 4  
  * A digg user.
 5  
  */
 6  
 public interface User {
 7  
 
 8  
         /**
 9  
          * Get the URL to this user's icon.
 10  
          */
 11  
         String getIcon();
 12  
 
 13  
         /**
 14  
          * Get the name of this user.
 15  
          */
 16  
         String getName();
 17  
 
 18  
         /**
 19  
          * Get the number of profile views for this user.
 20  
          */
 21  
         int getProfileviews();
 22  
 
 23  
         /**
 24  
          * Get the date this user registered.
 25  
          */
 26  
         long getRegistered();
 27  
 
 28  
 }