Clover coverage report - angkor - 0.4
Coverage timestamp: ti okt 15 2002 22:32:48 CEST
file stats: LOC: 27   Methods: 1
NCLOC: 9   Classes: 1
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
ActionEvent.java - 100% 100% 100%
 1   
 /*
 2   
  * Angkor Web Framework
 3   
  *
 4   
  * Distributable under LGPL license.
 5   
  * See terms of license at gnu.org.
 6   
  */
 7   
 package com.tirsen.angkor.event;
 8   
 
 9   
 import java.util.EventObject;
 10   
 
 11   
 /**
 12   
  * Indicates the event of a component-defined action.
 13   
  *
 14   
  * <!-- $Id: ActionEvent.java,v 1.2 2002/10/07 19:49:19 tirsen Exp $ -->
 15   
  *
 16   
  * @author $Author: tirsen $
 17   
  * @version $Revision: 1.2 $
 18   
  * @see ActionListener
 19   
  */
 20   
 public class ActionEvent extends EventObject
 21   
 {
 22  2
     public ActionEvent(Object source)
 23   
     {
 24  2
         super(source);
 25   
     }
 26   
 }
 27