Clover coverage report - XJavaDoc - 1.1
Coverage timestamp: Sun Oct 3 2004 19:56:54 BST
file stats: LOC: 22   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
Named.java - - - -
coverage
 1   
 /*
 2   
  * Copyright (c) 2001-2003 The XDoclet team
 3   
  * All rights reserved.
 4   
  */
 5   
 package xjavadoc;
 6   
 
 7   
 /**
 8   
  * Everything that can have a name implements this interface
 9   
  *
 10   
  * @author    Aslak Hellesøy
 11   
  * @created   16. oktober 2002
 12   
  */
 13   
 public interface Named
 14   
 {
 15   
     /**
 16   
      * Get name
 17   
      *
 18   
      * @return   name
 19   
      */
 20   
     String getName();
 21   
 }
 22