Clover coverage report - Cactus 1.4 for J2EE API 12
Coverage timestamp: Sun Aug 25 2002 18:00:03 BST
file stats: LOC: 45   Methods: 3
NCLOC: 13   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ServletImplicitObjects.java - 100% 100% 100%
 1   
 /*   Generated by AspectJ version 1.0.5 */
 2   
 package org.apache.cactus.server;
 3   
 import javax.servlet.ServletConfig;
 4   
 
 5   
 /** 
 6   
  * Holder class that contains the instances of the implicit objects that will 
 7   
  * be accessible in the test classes (i.e. subclasses of 
 8   
  * <code>ServletTestCase</code>). 
 9   
  * 
 10   
  * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 11   
  * 
 12   
  * @version $Id: ServletImplicitObjects.java,v 1.2 2002/03/10 13:58:25 vmassol Exp $ 
 13   
  */
 14   
 public class ServletImplicitObjects extends AbstractWebImplicitObjects {
 15   
   /** 
 16   
        * The Servlet configuration object. 
 17   
        */
 18   
   protected ServletConfig config;
 19   
   /** 
 20   
        * @return the <code>ServletConfig</code> implicit object 
 21   
        */
 22  177
   public ServletConfig getServletConfig() {
 23  177
     return this.config;
 24   
   } 
 25   
 
 26   
   /** 
 27   
        * @param theConfig the <code>ServletConfig</code> implicit object 
 28   
        */
 29  361
   public void setServletConfig(ServletConfig theConfig) {
 30  361
     this.config = theConfig;
 31   
   } 
 32   
 
 33   
   /** 
 34   
    * Holder class that contains the instances of the implicit objects that will 
 35   
    * be accessible in the test classes (i.e. subclasses of 
 36   
    * <code>ServletTestCase</code>). 
 37   
    * 
 38   
    * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 39   
    * 
 40   
    * @version $Id: ServletImplicitObjects.java,v 1.2 2002/03/10 13:58:25 vmassol Exp $ 
 41   
    */
 42  361
   public ServletImplicitObjects() {
 43  361
     super();
 44   
   } 
 45   
 }