Clover coverage report - Cactus 1.4 for J2EE API 13
Coverage timestamp: Sun Aug 25 2002 18:02:10 BST
file stats: LOC: 64   Methods: 5
NCLOC: 21   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
FilterImplicitObjects.java - 0% 0% 0%
 1   
 /*   Generated by AspectJ version 1.0.5 */
 2   
 package org.apache.cactus.server;
 3   
 import javax.servlet.FilterChain;
 4   
 import javax.servlet.FilterConfig;
 5   
 
 6   
 /** 
 7   
  * Holder class that contains the instances of the implicit objects that will 
 8   
  * be accessible in the test classes (i.e. subclasses of 
 9   
  * <code>FilterTestCase</code>). 
 10   
  * 
 11   
  * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 12   
  * 
 13   
  * @version $Id: FilterImplicitObjects.java,v 1.3 2002/04/14 10:35:44 vmassol Exp $ 
 14   
  */
 15   
 public class FilterImplicitObjects extends AbstractWebImplicitObjects {
 16   
   /** 
 17   
        * The Filter configuration object. 
 18   
        */
 19   
   protected FilterConfig config;
 20   
   /** 
 21   
        * The Filter chain object. 
 22   
        */
 23   
   protected FilterChain filterChain;
 24   
   /** 
 25   
        * @return the <code>FilterConfig</code> implicit object 
 26   
        */
 27  0
   public FilterConfig getFilterConfig() {
 28  0
     return this.config;
 29   
   } 
 30   
 
 31   
   /** 
 32   
        * @param theConfig the <code>FilterConfig</code> implicit object 
 33   
        */
 34  0
   public void setFilterConfig(FilterConfig theConfig) {
 35  0
     this.config = theConfig;
 36   
   } 
 37   
 
 38   
   /** 
 39   
        * @return the <code>FilterChain</code> implicit object 
 40   
        */
 41  0
   public FilterChain getFilterChain() {
 42  0
     return this.filterChain;
 43   
   } 
 44   
 
 45   
   /** 
 46   
        * @param theFilterChain the <code>FilterChain</code> implicit object 
 47   
        */
 48  0
   public void setFilterChain(FilterChain theFilterChain) {
 49  0
     this.filterChain = theFilterChain;
 50   
   } 
 51   
 
 52   
   /** 
 53   
    * Holder class that contains the instances of the implicit objects that will 
 54   
    * be accessible in the test classes (i.e. subclasses of 
 55   
    * <code>FilterTestCase</code>). 
 56   
    * 
 57   
    * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 58   
    * 
 59   
    * @version $Id: FilterImplicitObjects.java,v 1.3 2002/04/14 10:35:44 vmassol Exp $ 
 60   
    */
 61  0
   public FilterImplicitObjects() {
 62  0
     super();
 63   
   } 
 64   
 }