| |
|
| com.caucho.jsp.AbstractJspWriter com.caucho.jsp.AbstractBodyContent com.caucho.jsp.JspWriterAdapter
JspWriterAdapter | public class JspWriterAdapter extends AbstractBodyContent (Code) | | A buffered JSP writer encapsulating a Writer.
|
JspWriterAdapter | JspWriterAdapter()(Code) | | Creates a new JspWriterAdapter
|
getBufferSize | public int getBufferSize()(Code) | | Returns the buffer size of the writer.
|
getRemaining | public int getRemaining()(Code) | | Returns the remaining bytes in the buffer.
|
init | void init(PageContextImpl pageContext)(Code) | | Initialize the JSP writer
Parameters: os - the underlying stream |
write | final public void write(char[] buf, int offset, int length) throws IOException(Code) | | Writes a character array to the writer.
Parameters: buf - the buffer to write. Parameters: off - the offset into the buffer Parameters: len - the number of characters to write |
write | final public void write(int ch) throws IOException(Code) | | Writes a character to the output.
Parameters: buf - the buffer to write. |
write | final public void write(String s, int off, int len) throws IOException(Code) | | Writes a subsection of a string to the output.
|
|
|
|