Clover coverage report - Cactus 1.4b1 for J2EE API 12
Coverage timestamp: Mon Jul 29 2002 00:33:16 BST
file stats: LOC: 29   Methods: 1
NCLOC: 8   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
PageContextWrapper.java - 0% 0% 0%
 1   
 /*   Generated by AspectJ version 1.0.5 */
 2   
 package org.apache.cactus.server;
 3   
 import javax.servlet.jsp.PageContext;
 4   
 import org.apache.cactus.ServletURL;
 5   
 
 6   
 /** 
 7   
  * Wrapper around <code>PageContext</code> so that get methods that would 
 8   
  * normally return implicit objects will now return Cactus wrapper of 
 9   
  * implicit objects instead. 
 10   
  * 
 11   
  * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 12   
  * 
 13   
  * @version $Id: PageContextWrapper.java,v 1.2 2002/04/14 10:15:03 vmassol Exp $ 
 14   
  */
 15   
 public class PageContextWrapper extends AbstractPageContextWrapper {
 16   
   /** 
 17   
        * Construct an <code>PageContext</code> instance that delegates 
 18   
        * it's method calls to the page context object passed as parameter and 
 19   
        * that uses the URL passed as parameter to simulate a URL from which 
 20   
        * the request would come from. 
 21   
        * 
 22   
        * @param theOriginalPageContext the real page context 
 23   
        * @param theURL the URL to simulate or <code>null</code> if none 
 24   
        */
 25  0
   public PageContextWrapper(PageContext theOriginalPageContext, ServletURL theURL) {
 26  0
     super(theOriginalPageContext, theURL);
 27   
     ;
 28   
   } 
 29   
 }