Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
KNSHiddenTag |
|
| 1.3333333333333333;1.333 |
1 | /* | |
2 | * Copyright 2007-2008 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php | |
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 org.kuali.rice.kns.web.taglib.html; | |
17 | ||
18 | import org.apache.struts.taglib.html.HiddenTag; | |
19 | ||
20 | import javax.servlet.jsp.JspException; | |
21 | ||
22 | /** | |
23 | * This is a description of what this class does - bhargavp don't forget to fill this in. | |
24 | * | |
25 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
26 | * | |
27 | */ | |
28 | 0 | public class KNSHiddenTag extends HiddenTag { |
29 | ||
30 | 0 | protected boolean renderHiddenField = true; |
31 | ||
32 | @Override | |
33 | public int doStartTag() throws JspException { | |
34 | 0 | int returnVal = SKIP_BODY; |
35 | 0 | if(renderHiddenField) |
36 | 0 | returnVal = super.doStartTag(); |
37 | 0 | return returnVal; |
38 | } | |
39 | ||
40 | /** | |
41 | * @return the renderHiddenField | |
42 | */ | |
43 | public boolean isRenderHiddenField() { | |
44 | 0 | return this.renderHiddenField; |
45 | } | |
46 | ||
47 | /** | |
48 | * @param renderHiddenField the renderHiddenField to set | |
49 | */ | |
50 | public void setRenderHiddenField(boolean renderHiddenField) { | |
51 | 0 | this.renderHiddenField = renderHiddenField; |
52 | 0 | } |
53 | } |