Clover coverage report - Flock Flock - 0.7-dev
Coverage timestamp: Thu Jan 30 2003 01:35:37 EST
file stats: LOC: 45   Methods: 7
NCLOC: 32   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
Subscription.java - 85.7% 85.7% 85.7%
 1   
 package net.sf.flock.hibernate;
 2   
 
 3   
 import java.net.URL;
 4   
 
 5   
 import net.sf.flock.FeedI;
 6   
 import net.sf.flock.FeedInfoI;
 7   
 import net.sf.flock.MetaData;
 8   
 import net.sf.flock.SubscriptionI;
 9   
 
 10   
 public class Subscription extends Entity implements SubscriptionI {
 11   
 
 12   
     private Feed feed;
 13   
     private URL location;
 14   
     private MetaData metaData;
 15   
 
 16  7
     public FeedI getFeed() {
 17  7
         return this.feed;
 18   
     }
 19   
     
 20  2
     protected void setFeed(Feed feed) {
 21  2
         this.feed = feed;
 22   
     }
 23   
 
 24  0
     public FeedInfoI getFeedInfo() {
 25  0
         return this.feed;
 26   
     }
 27   
 
 28  5
     public URL getLocation() {
 29  5
         return this.location;
 30   
     }
 31   
 
 32  2
     protected void setLocation(URL location) {
 33  2
         this.location = location;
 34   
     }
 35   
 
 36  8
     public MetaData getMetaData() {
 37  8
         return this.metaData;
 38   
     }
 39   
     
 40  2
     protected void setMetaData(MetaData metaData) {
 41  2
         this.metaData = metaData;
 42   
     }
 43   
 
 44   
 }
 45