Clover coverage report - Code Coverage for tapestry-portlet release 4.0-alpha-3
Coverage timestamp: Mon May 16 2005 09:12:17 EDT
file stats: LOC: 86   Methods: 8
NCLOC: 46   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
PortletWebResponse.java - 63.6% 75% 68.4%
coverage coverage
 1   
 // Copyright 2005 The Apache Software Foundation
 2   
 //
 3   
 // Licensed under the Apache License, Version 2.0 (the "License");
 4   
 // you may not use this file except in compliance with the License.
 5   
 // You may obtain a copy of the License at
 6   
 //
 7   
 //     http://www.apache.org/licenses/LICENSE-2.0
 8   
 //
 9   
 // Unless required by applicable law or agreed to in writing, software
 10   
 // distributed under the License is distributed on an "AS IS" BASIS,
 11   
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 12   
 // See the License for the specific language governing permissions and
 13   
 // limitations under the License.
 14   
 
 15   
 package org.apache.tapestry.portlet;
 16   
 
 17   
 import java.io.IOException;
 18   
 import java.io.OutputStream;
 19   
 import java.io.PrintWriter;
 20   
 
 21   
 import javax.portlet.PortletResponse;
 22   
 
 23   
 import org.apache.hivemind.util.Defense;
 24   
 import org.apache.tapestry.util.ContentType;
 25   
 import org.apache.tapestry.web.WebResponse;
 26   
 
 27   
 /**
 28   
  * Adapts {@link javax.portlet.PortletResponse}. as {@link org.apache.tapestry.web.WebResponse}.
 29   
  * 
 30   
  * @author Howard M. Lewis Ship
 31   
  * @since 4.0
 32   
  */
 33   
 public class PortletWebResponse implements WebResponse
 34   
 {
 35   
     private final PortletResponse _portletResponse;
 36   
 
 37  13
     public PortletWebResponse(PortletResponse portletResponse)
 38   
     {
 39  13
         Defense.notNull(portletResponse, "portletResponse");
 40   
 
 41  13
         _portletResponse = portletResponse;
 42   
     }
 43   
 
 44  2
     public OutputStream getOutputStream(ContentType contentType) throws IOException
 45   
     {
 46  2
         unsupported("getOutputStream");
 47   
 
 48  0
         return null;
 49   
     }
 50   
 
 51  0
     public PrintWriter getPrintWriter(ContentType contentType) throws IOException
 52   
     {
 53  0
         unsupported("getPrintWriter");
 54   
 
 55  0
         return null;
 56   
     }
 57   
 
 58  2
     public String encodeURL(String url)
 59   
     {
 60  2
         return _portletResponse.encodeURL(url);
 61   
     }
 62   
 
 63  1
     public void reset()
 64   
     {
 65  1
         unsupported("reset");
 66   
     }
 67   
 
 68  0
     public void setContentLength(int contentLength)
 69   
     {
 70  0
         unsupported("setContentLength");
 71   
     }
 72   
 
 73   
     /**
 74   
      * Returns the empty string. The {@link RenderWebResponse} subclass actually provides a
 75   
      * real value here.
 76   
      */
 77  1
     public String getNamespace()
 78   
     {
 79  1
         return "";
 80   
     }
 81   
 
 82  3
     protected final void unsupported(String methodName)
 83   
     {
 84  3
         throw new UnsupportedOperationException(PortletMessages.unsupportedMethod(methodName));
 85   
     }
 86   
 }