Clover coverage report - Cactus 1.4b1 for J2EE API 13
Coverage timestamp: Mon Jul 29 2002 00:34:41 BST
file stats: LOC: 46   Methods: 0
NCLOC: 11   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
WebImplicitObjects.java - - - -
 1   
 /*   Generated by AspectJ version 1.0.5 */
 2   
 package org.apache.cactus.server;
 3   
 import javax.servlet.ServletContext;
 4   
 import javax.servlet.http.HttpServletResponse;
 5   
 import javax.servlet.http.HttpServletRequest;
 6   
 
 7   
 /** 
 8   
  * Interface for implicit objects that exist 
 9   
  * for all web requests (<code>HttpServletRequest</code>, 
 10   
  * <code>HttpServletResponse</code> and <code>ServletContext</code>). 
 11   
  * 
 12   
  * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 13   
  * 
 14   
  * @version $Id: WebImplicitObjects.java,v 1.3 2002/05/06 17:38:23 vmassol Exp $ 
 15   
  */
 16   
 public interface WebImplicitObjects extends ImplicitObjects {
 17   
   /** 
 18   
        * @return the <code>ServletContext</code> implicit object 
 19   
        */
 20   
   ServletContext getServletContext();
 21   
 
 22   
   /** 
 23   
        * @param theContext the <code>ServletContext</code> implicit object 
 24   
        */
 25   
   void setServletContext(ServletContext theContext);
 26   
 
 27   
   /** 
 28   
        * @return the <code>HttpServletResponse</code> implicit object 
 29   
        */
 30   
   HttpServletResponse getHttpServletResponse();
 31   
 
 32   
   /** 
 33   
        * @param theResponse the <code>HttpServletResponse</code> implicit object 
 34   
        */
 35   
   void setHttpServletResponse(HttpServletResponse theResponse);
 36   
 
 37   
   /** 
 38   
        * @return the <code>HttpServletRequest</code> implicit object 
 39   
        */
 40   
   HttpServletRequest getHttpServletRequest();
 41   
 
 42   
   /** 
 43   
        * @param theRequest the <code>HttpServletRequest</code> implicit object 
 44   
        */
 45   
   void setHttpServletRequest(HttpServletRequest theRequest);
 46   
 }