Clover coverage report - Ivory - 1.0-alpha-5
Coverage timestamp: Sun Nov 9 2003 22:02:40 EST
file stats: LOC: 24   Methods: 2
NCLOC: 13   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
ParameterType.java - 100% 100% 100%
coverage
 1   
 package org.codehaus.ivory.attributes;
 2   
 
 3   
 /**
 4   
  * An Attribute which specifies the returned parameter type for SOAP
 5   
  * serialization.
 6   
  * 
 7   
  * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
 8   
  * @since Sep 23, 2003
 9   
  */
 10   
 public class ParameterType
 11   
 {
 12   
     private Class clazz;
 13   
     
 14  1
     public ParameterType( Class clazz )
 15   
     {
 16  1
         this.clazz = clazz;
 17   
     }
 18   
     
 19  2
     public Class getParameterType()
 20   
     {
 21  2
         return clazz;
 22   
     }
 23   
 }
 24