public interface SitemeshWriter
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Taken from
Writer |
void |
flush()
Taken from
Writer |
SitemeshBuffer |
getSitemeshBuffer()
Get the underlying buffer for the writer
|
java.io.Writer |
getUnderlyingWriter()
Because writer is a class and not an interface we need a way to self reference so
we can pass the underlying Writer onto other Writers.
|
void |
write(char[] chars)
Taken from
Writer |
void |
write(char[] chars,
int off,
int len)
Taken from
Writer |
void |
write(int c)
Taken from
Writer |
void |
write(java.lang.String str)
Taken from
Writer |
void |
write(java.lang.String str,
int off,
int len)
Taken from
Writer |
boolean |
writeSitemeshBufferFragment(SitemeshBufferFragment bufferFragment)
Write a sitemesh buffer fragment to the writer.
|
java.io.Writer getUnderlyingWriter()
void write(int c)
throws java.io.IOException
Writerc - the character to writejava.io.IOExceptionvoid write(char[] chars,
int off,
int len)
throws java.io.IOException
Writerchars - the characters to writeoff - the offset to write fromlen - the length to writejava.io.IOExceptionvoid write(char[] chars)
throws java.io.IOException
Writerchars - the characters to writejava.io.IOExceptionvoid write(java.lang.String str,
int off,
int len)
throws java.io.IOException
Writerstr - the characters to writeoff - the offset to write fromlen - the length to writejava.io.IOExceptionvoid write(java.lang.String str)
throws java.io.IOException
Writerstr - the characters to writejava.io.IOExceptionvoid flush()
throws java.io.IOException
Writerjava.io.IOExceptionvoid close()
throws java.io.IOException
Writerjava.io.IOExceptionboolean writeSitemeshBufferFragment(SitemeshBufferFragment bufferFragment) throws java.io.IOException
bufferFragment - The buffer fragment to writejava.io.IOException - If an IOException occurredSitemeshBuffer getSitemeshBuffer()