Clover coverage report - Cactus 1.4b1 for J2EE API 12
Coverage timestamp: Mon Jul 29 2002 00:33:16 BST
file stats: LOC: 65   Methods: 5
NCLOC: 21   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
JspImplicitObjects.java - 0% 0% 0%
 1   
 /*   Generated by AspectJ version 1.0.5 */
 2   
 package org.apache.cactus.server;
 3   
 import javax.servlet.jsp.JspWriter;
 4   
 import javax.servlet.jsp.PageContext;
 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>JspTestCase</code>). 
 10   
  * 
 11   
  * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 12   
  * 
 13   
  * @version $Id: JspImplicitObjects.java,v 1.2 2002/03/10 13:58:25 vmassol Exp $ 
 14   
  */
 15   
 public class JspImplicitObjects extends ServletImplicitObjects {
 16   
   /** 
 17   
        * The JSP redirector <code>PageContext</code> object. 
 18   
        */
 19   
   protected PageContext pageContext;
 20   
   /** 
 21   
        * The JSP redirector <code>JspWriter</code> object (same as 
 22   
        * <code>pagecontext.getOut()</code>). 
 23   
        */
 24   
   protected JspWriter jspWriter;
 25   
   /** 
 26   
        * @return the <code>PageContext</code> implicit object 
 27   
        */
 28  0
   public PageContext getPageContext() {
 29  0
     return this.pageContext;
 30   
   } 
 31   
 
 32   
   /** 
 33   
        * @param thePageContext the <code>PageContext</code> implicit object 
 34   
        */
 35  0
   public void setPageContext(PageContext thePageContext) {
 36  0
     this.pageContext = thePageContext;
 37   
   } 
 38   
 
 39   
   /** 
 40   
        * @return the <code>JspWriter</code> implicit object 
 41   
        */
 42  0
   public JspWriter getJspWriter() {
 43  0
     return this.jspWriter;
 44   
   } 
 45   
 
 46   
   /** 
 47   
        * @param theWriter the <code>JspWriter</code> implicit object 
 48   
        */
 49  0
   public void setJspWriter(JspWriter theWriter) {
 50  0
     this.jspWriter = theWriter;
 51   
   } 
 52   
 
 53   
   /** 
 54   
    * Holder class that contains the instances of the implicit objects that will 
 55   
    * be accessible in the test classes (i.e. subclasses of 
 56   
    * <code>JspTestCase</code>). 
 57   
    * 
 58   
    * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 59   
    * 
 60   
    * @version $Id: JspImplicitObjects.java,v 1.2 2002/03/10 13:58:25 vmassol Exp $ 
 61   
    */
 62  0
   public JspImplicitObjects() {
 63  0
     super();
 64   
   } 
 65   
 }