MCPcopy Create free account
hub / github.com/apache/tomcat / setToBrowser

Method setToBrowser

webapps/examples/WEB-INF/classes/examples/LogTag.java:33–41  ·  view source on GitHub ↗
(String value)

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 1

equalsIgnoreCaseMethod · 0.45

Tested by

no test coverage detected