Clover coverage report - XJavaDoc - 1.1
Coverage timestamp: Mon Oct 4 2004 23:49:51 BST
file stats: LOC: 45   Methods: 4
NCLOC: 26   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
MemberImpl.java 50% 66.7% 75% 66.7%
coverage coverage
 1   
 /*
 2   
  * Copyright (c) 2001-2003 The XDoclet team
 3   
  * All rights reserved.
 4   
  */
 5   
 package xjavadoc;
 6   
 
 7   
 import java.util.List;
 8   
 
 9   
 /**
 10   
  * Baseclass for field, method and constructor
 11   
  *
 12   
  * @author    Aslak Hellesøy
 13   
  * @created   Feb 15, 2002
 14   
  * @version   $Revision: 1.5 $
 15   
  */
 16   
 abstract class MemberImpl extends AbstractProgramElement implements XMember
 17   
 {
 18   
     private String     _name;
 19   
 
 20  5682
     protected MemberImpl( AbstractClass containingClass, XTagFactory tagFactory )
 21   
     {
 22  5682
         super( containingClass, tagFactory );
 23   
     }
 24   
 
 25  9233
     public String getName()
 26   
     {
 27  9233
         return _name;
 28   
     }
 29   
 
 30  5409
     public void setName( String name )
 31   
     {
 32  5409
         if( name == null )
 33   
         {
 34  0
             throw new IllegalArgumentException( "name can't be null" );
 35   
         }
 36  5409
         _name = name;
 37   
     }
 38   
 
 39  0
     public List getSuperInterfaceElements()
 40   
     {
 41  0
         return null;
 42   
     }
 43   
 
 44   
 }
 45