2011/08/05 - Jakarta Cactus has been retired.

For more information, please explore the Attic.

Clover coverage report - Cactus 1.8dev for J2EE API 1.3
Coverage timestamp: Sun Mar 26 2006 18:50:18 BRT
file stats: LOC: 65   Methods: 2
NCLOC: 19   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
AbstractPageContextWrapper23.java - 50% 50% 50%
coverage coverage
 1   
 /* 
 2   
  * ========================================================================
 3   
  * 
 4   
  * Copyright 2004 The Apache Software Foundation.
 5   
  *
 6   
  * Licensed under the Apache License, Version 2.0 (the "License");
 7   
  * you may not use this file except in compliance with the License.
 8   
  * You may obtain a copy of the License at
 9   
  * 
 10   
  *   http://www.apache.org/licenses/LICENSE-2.0
 11   
  * 
 12   
  * Unless required by applicable law or agreed to in writing, software
 13   
  * distributed under the License is distributed on an "AS IS" BASIS,
 14   
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 15   
  * See the License for the specific language governing permissions and
 16   
  * limitations under the License.
 17   
  * 
 18   
  * ========================================================================
 19   
  */
 20   
 package org.apache.cactus.server;
 21   
 
 22   
 import java.io.IOException;
 23   
 
 24   
 import javax.servlet.ServletException;
 25   
 import javax.servlet.jsp.PageContext;
 26   
 
 27   
 import org.apache.cactus.ServletURL;
 28   
 
 29   
 /**
 30   
  * Extends {@link AbstractPageContextWrapper} by adding the new methods 
 31   
  * of the Servlet 2.3 API specifications.
 32   
  *
 33   
  * @see AbstractPageContextWrapper
 34   
  * @version $Id: AbstractPageContextWrapper23.java 238993 2004-05-22 16:39:34Z vmassol $
 35   
  */
 36   
 public abstract class AbstractPageContextWrapper23 
 37   
     extends AbstractPageContextWrapper
 38   
 {
 39   
     /**
 40   
      * Construct a {@link PageContext} instance that delegates
 41   
      * it's method calls to the page context object passed as parameter and
 42   
      * that uses the URL passed as parameter to simulate a URL from which
 43   
      * the request would come from.
 44   
      *
 45   
      * @param theOriginalPageContext the real page context
 46   
      * @param theURL the URL to simulate or <code>null</code> if none
 47   
      */
 48  5
     public AbstractPageContextWrapper23(PageContext theOriginalPageContext, 
 49   
         ServletURL theURL)
 50   
     {
 51  5
         super(theOriginalPageContext, theURL);
 52   
     }
 53   
 
 54   
     // Unmodified overridden methods -----------------------------------------
 55   
 
 56   
     /**
 57   
      * @see PageContext#handlePageException(Throwable)
 58   
      */
 59  0
     public void handlePageException(Throwable theThrowable)
 60   
         throws ServletException, IOException
 61   
     {
 62  0
         this.originalPageContext.handlePageException(theThrowable);
 63   
     }
 64   
 }
 65