(String value)
| 31 | boolean toBrowser = false; |
| 32 | |
| 33 | public void setToBrowser(String value) { |
| 34 | if (value == null) { |
| 35 | toBrowser = false; |
| 36 | } else if (value.equalsIgnoreCase("true")) { |
| 37 | toBrowser = true; |
| 38 | } else { |
| 39 | toBrowser = false; |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | @Override |
| 44 | public int doStartTag() throws JspException { |
nothing calls this directly
no test coverage detected