()
| 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 |
nothing calls this directly
no test coverage detected