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

Method doAfterBody

webapps/examples/WEB-INF/classes/examples/FooTag.java:71–85  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

69 }
70
71 @Override
72 public int doAfterBody() throws JspException {
73 try {
74 if (i == 3) {
75 bodyOut.writeOut(bodyOut.getEnclosingWriter());
76 return SKIP_BODY;
77 }
78
79 pageContext.setAttribute("member", atts[i]);
80 i++;
81 return EVAL_BODY_BUFFERED;
82 } catch (IOException ioe) {
83 throw new JspTagException(ioe.toString());
84 }
85 }
86}
87

Callers

nothing calls this directly

Calls 4

getEnclosingWriterMethod · 0.80
setAttributeMethod · 0.65
toStringMethod · 0.65
writeOutMethod · 0.45

Tested by

no test coverage detected