Coverage details for org.chwf.taglib.jutil.SetTag

LineHitsSource
1 /*
2 Chrysalis Web Framework [http://chrysalis.sourceforge.net]
3 Copyright (c) 2002, 2003, 2004, Paul Strack
4  
5 All rights reserved.
6  
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9  
10 1. Redistributions of source code must retain the above copyright notice, this
11 list of conditions and the following disclaimer.
12  
13 2. Redistributions in binary form must reproduce the above copyright notice,
14 this list of conditions and the following disclaimer in the documentation
15 and/or other materials provided with the distribution.
16  
17 3. Neither the name of the copyright holder nor the names of its contributors
18 may be used to endorse or promote products derived from this software without
19 specific prior written permission.
20  
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
22 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
25 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
28 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32  
33 package org.chwf.taglib.jutil;
34  
35 import javax.servlet.jsp.JspException;
36  
37 import org.chwf.servlet.ServletUtils;
38 import org.chwf.taglib.base.ObjectTagSupport;
39  
40 /**
41  * Tag handler for the <code>&lt;set&gt;</code> tag.
42  *
43  * @author <a href="mailto:pfstrack@users.sourceforge.net">Paul Strack</a>
44  */
457public class SetTag extends ObjectTagSupport {
46  
47   /**
48    * Calls superclass method. Is present here because of a bug in some servlet
49    * engines that requires tag attibute setters to be defined in the tag class
50    * itself.
51    *
52    * @param var The object name.
53    */
54   public void setVar(String var) {
552    super.setVar(var);
562  }
57  
58   /**
59    * Calls superclass method. Is present here because of a bug in some servlet
60    * engines that requires tag attibute setters to be defined in the tag class
61    * itself.
62    *
63    * @param objectName The object name.
64    * @throws JspException For errors.
65    */
66   public void setObject(String objectName) throws JspException {
672    super.setObject(objectName);
682  }
69  
70   /**
71    * Calls superclass method. Is present here because of a bug in some servlet
72    * engines that requires tag attibute setters to be defined in the tag class
73    * itself.
74    *
75    * @param property The property name.
76    * @throws JspException For errors.
77    */
78   public void setProperty(String property) throws JspException {
792    super.setProperty(property);
802  }
81  
82   /**
83    * Calls superclass method. Is present here because of a bug in some servlet
84    * engines that requires tag attibute setters to be defined in the tag class
85    * itself.
86    *
87    * @param el The JSTL Expression Language statement.
88    */
89   public void setEl(String el) {
901    super.setEl(el);
911  }
92  
93   /**
94    * Stores the object property in the specified variable.
95    *
96    * @return SKIP_BODY
97    * @throws JspException If the owner object does not exist.
98    */
99   public int doStart() throws JspException {
1001    Object result = getTagResult();
1011    ServletUtils.setPageAttribute(pageContext, getVar(), result);
1021    storeDefaultObject(result);
1031    return SKIP_BODY;
104   }
105 }

this report was generated by version 1.0.5 of jcoverage.
visit www.jcoverage.com for updates.

copyright © 2003, jcoverage ltd. all rights reserved.
Java is a trademark of Sun Microsystems, Inc. in the United States and other countries.