Coverage Report - net.spy.digg.Topic
 
Classes in this File Line Coverage Branch Coverage Complexity
Topic
N/A
N/A
1
 
 1  
 package net.spy.digg;
 2  
 
 3  
 /**
 4  
  * A topic for stories.
 5  
  */
 6  
 public interface Topic {
 7  
 
 8  
         /**
 9  
          * Get the name of this topic's container.
 10  
          */
 11  
         String getContainerName();
 12  
 
 13  
         /**
 14  
          * Get the name of this topic.
 15  
          */
 16  
         String getName();
 17  
 
 18  
         /**
 19  
          * Get the short name of this topic.
 20  
          */
 21  
         String getShortName();
 22  
 
 23  
 }