Clover coverage report - Replica - 1.0-Alpha
Coverage timestamp: Dom Fev 1 2004 17:00:58 WET
file stats: LOC: 26   Methods: 1
NCLOC: 7   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
GroupEvent.java - 100% 100% 100%
coverage
 1   
 /*
 2   
  * Replica is published under the terms
 3   
  * of the Apache Software License.
 4   
  */
 5   
 package replica.group.event;
 6   
 
 7   
 import java.util.EventObject;
 8   
 
 9   
 /**
 10   
  * Super class for all group events.
 11   
  * 
 12   
  * @author Pedro Costa
 13   
  * @author Helder Silva
 14   
  * @since 19/Jan/2004
 15   
  */
 16   
 public class GroupEvent extends EventObject{
 17   
 
 18   
     /**
 19   
      * @param source
 20   
      */
 21  42
     public GroupEvent(Object source) {
 22  42
         super(source);
 23   
     }
 24   
 
 25   
 }
 26