Clover coverage report - Diasparsoft Toolkit - 0.22
Coverage timestamp: Mon Jun 7 2004 22:02:31 EDT
file stats: LOC: 71   Methods: 17
NCLOC: 51   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
HttpSessionAdapter.java - 0% 0% 0%
coverage
 1   
 package com.diasparsoftware.javax.servlet.http;
 2   
 
 3   
 import java.util.Enumeration;
 4   
 
 5   
 import javax.servlet.ServletContext;
 6   
 import javax.servlet.http.*;
 7   
 
 8   
 public class HttpSessionAdapter implements HttpSession {
 9  0
     public long getCreationTime() {
 10  0
         return 0;
 11   
     }
 12   
 
 13  0
     public String getId() {
 14  0
         return null;
 15   
     }
 16   
 
 17  0
     public long getLastAccessedTime() {
 18  0
         return 0;
 19   
     }
 20   
 
 21  0
     public ServletContext getServletContext() {
 22  0
         return null;
 23   
     }
 24   
 
 25  0
     public void setMaxInactiveInterval(int maxInactiveInterval) {
 26   
     }
 27   
 
 28  0
     public int getMaxInactiveInterval() {
 29  0
         return 0;
 30   
     }
 31   
 
 32  0
     public HttpSessionContext getSessionContext() {
 33  0
         return null;
 34   
     }
 35   
 
 36  0
     public Object getAttribute(String name) {
 37  0
         return null;
 38   
     }
 39   
 
 40  0
     public Object getValue(String name) {
 41  0
         return null;
 42   
     }
 43   
 
 44  0
     public Enumeration getAttributeNames() {
 45  0
         return null;
 46   
     }
 47   
 
 48  0
     public String[] getValueNames() {
 49  0
         return null;
 50   
     }
 51   
 
 52  0
     public void setAttribute(String name, Object value) {
 53   
     }
 54   
 
 55  0
     public void putValue(String name, Object value) {
 56   
     }
 57   
 
 58  0
     public void removeAttribute(String name) {
 59   
     }
 60   
 
 61  0
     public void removeValue(String name) {
 62   
     }
 63   
 
 64  0
     public void invalidate() {
 65   
     }
 66   
 
 67  0
     public boolean isNew() {
 68  0
         return false;
 69   
     }
 70   
 }
 71