515516517518519520521522523
protected void reset() throws IOException { pageContext.clearPageScope(); pageContext.removeAttribute("javax.faces.webapp.AUTO_INDEX", PageContext.REQUEST_SCOPE); MockJspWriter writer = (MockJspWriter) pageContext.getOut(); writer.clearBuffer(); }
555556557558559560561562563
// Return the rendered text protected String text() { MockJspWriter writer = (MockJspWriter) pageContext.getOut(); return (writer.getBuffer()); }