Clover coverage report - Cactus 1.4 for J2EE API 13
Coverage timestamp: Sun Aug 25 2002 18:02:10 BST
file stats: LOC: 61   Methods: 2
NCLOC: 17   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
JspTestRedirector.java - 0% 0% 0%
 1   
 /*   Generated by AspectJ version 1.0.5 */
 2   
 package org.apache.cactus.server;
 3   
 import org.apache.commons.logging.Log;
 4   
 import org.apache.commons.logging.LogFactory;
 5   
 import javax.servlet.ServletException;
 6   
 
 7   
 /** 
 8   
  * Extension of the <code>jspRedirector.jsp</code> JSP Redirector in the java 
 9   
  * realmn in order to provide a symmetry with the <code>ServletRedirector</code> 
 10   
  * and minimize the amount of java code in <code>jspRedirector.jsp</code>. 
 11   
  * 
 12   
  * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 13   
  * 
 14   
  * @version $Id: JspTestRedirector.java,v 1.3 2002/07/22 12:26:04 vmassol Exp $ 
 15   
  */
 16   
 public class JspTestRedirector {
 17   
   /** 
 18   
        * The logger 
 19   
        */
 20   
   private static Log LOGGER;
 21   
   /** 
 22   
        * Handles requests from the <code>jspRedirector.jsp</code> JSP Redirector. 
 23   
        * @param theObjects the implicit objects that will be passed to the test 
 24   
        *        case 
 25   
        * @exception ServletException if an error occurs servicing the request 
 26   
        */
 27  0
   public void doGet(JspImplicitObjects theObjects) throws ServletException {
 28  0
     JspTestRedirector.LOGGER.debug("------------- Start JSP service");
 29  0
     JspTestController controller = new JspTestController();
 30  0
     controller.handleRequest(theObjects);
 31   
   } 
 32   
 
 33   
   /** 
 34   
    * Extension of the <code>jspRedirector.jsp</code> JSP Redirector in the java 
 35   
    * realmn in order to provide a symmetry with the <code>ServletRedirector</code> 
 36   
    * and minimize the amount of java code in <code>jspRedirector.jsp</code>. 
 37   
    * 
 38   
    * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 39   
    * 
 40   
    * @version $Id: JspTestRedirector.java,v 1.3 2002/07/22 12:26:04 vmassol Exp $ 
 41   
    */
 42  0
   public JspTestRedirector() {
 43  0
     super();
 44   
   } 
 45   
   /** 
 46   
    * Extension of the <code>jspRedirector.jsp</code> JSP Redirector in the java 
 47   
    * realmn in order to provide a symmetry with the <code>ServletRedirector</code> 
 48   
    * and minimize the amount of java code in <code>jspRedirector.jsp</code>. 
 49   
    * 
 50   
    * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 51   
    * 
 52   
    * @version $Id: JspTestRedirector.java,v 1.3 2002/07/22 12:26:04 vmassol Exp $ 
 53   
    */
 54   
   static {
 55   
     /** 
 56   
          * The logger 
 57   
          */
 58  0
     JspTestRedirector.LOGGER = LogFactory.getLog(JspTestRedirector.class);
 59   
   } 
 60   
 
 61   
 }