Clover coverage report - XJavaDoc - 1.1
Coverage timestamp: Sun Oct 3 2004 19:56:54 BST
file stats: LOC: 31   Methods: 0
NCLOC: 6   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
XField.java - - - -
coverage
 1   
 /*
 2   
  * Copyright (c) 2001-2003 The XDoclet team
 3   
  * All rights reserved.
 4   
  */
 5   
 package xjavadoc;
 6   
 
 7   
 /**
 8   
  * Describe what this class does
 9   
  *
 10   
  * @author         Ara Abrahamian
 11   
  * @author         Aslak Hellesøy
 12   
  * @created        February 16, 2002
 13   
  * @todo-javadoc   Write javadocs for interface
 14   
  */
 15   
 public interface XField extends XMember, Type
 16   
 {
 17   
     /**
 18   
      * Gets the Transient attribute of the XField object
 19   
      *
 20   
      * @return   The Transient value
 21   
      */
 22   
     boolean isTransient();
 23   
 
 24   
     /**
 25   
      * Gets the Volatile attribute of the XField object
 26   
      *
 27   
      * @return   The Volatile value
 28   
      */
 29   
     boolean isVolatile();
 30   
 }
 31