Clover coverage report - XJavaDoc - 1.1
Coverage timestamp: Sun Oct 3 2004 19:56:54 BST
file stats: LOC: 25   Methods: 0
NCLOC: 5   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
XDocListener.java - - - -
coverage
 1   
 /*
 2   
  * Copyright (c) 2001-2003 The XDoclet team
 3   
  * All rights reserved.
 4   
  */
 5   
 package xjavadoc.event;
 6   
 
 7   
 /**
 8   
  * Describe what this class does
 9   
  *
 10   
  * @author         Aslak Hellesøy
 11   
  * @created        30. januar 2002
 12   
  * @todo-javadoc   Write javadocs for interface
 13   
  */
 14   
 public interface XDocListener extends java.util.EventListener
 15   
 {
 16   
     /**
 17   
      * Describe what the method does
 18   
      *
 19   
      * @param event    Describe what the parameter does
 20   
      * @todo-javadoc   Write javadocs for method
 21   
      * @todo-javadoc   Write javadocs for method parameter
 22   
      */
 23   
     void docChanged( XDocEvent event );
 24   
 }
 25