Clover coverage report - XJavaDoc - 1.1
Coverage timestamp: Mon Oct 4 2004 23:49:51 BST
file stats: LOC: 29   Methods: 1
NCLOC: 10   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
XTagEvent.java - 0% 0% 0%
coverage
 1   
 /*
 2   
  * Copyright (c) 2001-2003 The XDoclet team
 3   
  * All rights reserved.
 4   
  */
 5   
 package xjavadoc.event;
 6   
 
 7   
 import java.util.EventObject;
 8   
 import xjavadoc.XTag;
 9   
 
 10   
 /**
 11   
  * Describe what this class does
 12   
  *
 13   
  * @author         Aslak Hellesøy
 14   
  * @created        30. januar 2002
 15   
  * @todo-javadoc   Write javadocs
 16   
  */
 17   
 public class XTagEvent extends EventObject
 18   
 {
 19   
     /**
 20   
      * create new event containing tag object.
 21   
      *
 22   
      * @param tag  object to wrap
 23   
      */
 24  0
     public XTagEvent( XTag tag )
 25   
     {
 26  0
         super( tag );
 27   
     }
 28   
 }
 29