Clover coverage report - Flock Flock - 0.7-dev
Coverage timestamp: Thu Jan 30 2003 01:35:37 EST
file stats: LOC: 16   Methods: 2
NCLOC: 10   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
Entity.java - 100% 100% 100%
 1   
 package net.sf.flock.hibernate;
 2   
 
 3   
 public class Entity {
 4   
 
 5   
     private String id;
 6   
     
 7  2
     public String getId() {
 8  2
         return id;
 9   
     }
 10   
 
 11  2
     protected void setId(String id) {
 12  2
         this.id = id;
 13   
     }
 14   
 
 15   
 }
 16