Clover coverage report - Maven Clover report
Coverage timestamp: Thu Aug 24 2006 01:18:17 PDT
file stats: LOC: 60   Methods: 3
NCLOC: 31   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
LogTag.java 0% 0% 0% 0%
coverage
 1    /*
 2    * Copyright 2004 The Apache Software Foundation
 3    *
 4    * Licensed under the Apache License, Version 2.0 (the "License");
 5    * you may not use this file except in compliance with the License.
 6    * You may obtain a copy of the License at
 7    *
 8    * http://www.apache.org/licenses/LICENSE-2.0
 9    *
 10    * Unless required by applicable law or agreed to in writing, software
 11    * distributed under the License is distributed on an "AS IS" BASIS,
 12    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13    * See the License for the specific language governing permissions and
 14    * limitations under the License.
 15    */
 16    package examples;
 17   
 18   
 19    import javax.servlet.jsp.*;
 20    import javax.servlet.jsp.tagext.*;
 21   
 22    import java.io.IOException;
 23   
 24    /**
 25    * Log the contents of the body. Could be used to handle errors etc.
 26    */
 27    public class LogTag
 28    extends ExampleTagBase
 29    {
 30    boolean toBrowser = false;
 31   
 32  0 public void setToBrowser(String value) {
 33  0 if (value == null)
 34  0 toBrowser = false;
 35  0 else if (value.equalsIgnoreCase("true"))
 36  0 toBrowser = true;
 37    else
 38  0 toBrowser = false;
 39    }
 40   
 41  0 public int doStartTag() throws JspException {
 42  0 return EVAL_BODY_TAG;
 43    }
 44   
 45  0 public int doAfterBody() throws JspException {
 46  0 try {
 47  0 String s = bodyOut.getString();
 48  0 System.err.println(s);
 49  0 if (toBrowser)
 50  0 bodyOut.writeOut(bodyOut.getEnclosingWriter());
 51  0 return SKIP_BODY;
 52    } catch (IOException ex) {
 53  0 throw new JspTagException(ex.toString());
 54    }
 55    }
 56    }
 57   
 58   
 59   
 60