Line | Hits | Source |
---|---|---|
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><set></code> tag. | |
42 | * | |
43 | * @author <a href="mailto:pfstrack@users.sourceforge.net">Paul Strack</a> | |
44 | */ | |
45 | 7 | public 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) { | |
55 | 2 | super.setVar(var); |
56 | 2 | } |
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 { | |
67 | 2 | super.setObject(objectName); |
68 | 2 | } |
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 { | |
79 | 2 | super.setProperty(property); |
80 | 2 | } |
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) { | |
90 | 1 | super.setEl(el); |
91 | 1 | } |
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 { | |
100 | 1 | Object result = getTagResult(); |
101 | 1 | ServletUtils.setPageAttribute(pageContext, getVar(), result); |
102 | 1 | storeDefaultObject(result); |
103 | 1 | return SKIP_BODY; |
104 | } | |
105 | } |
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |