Class OutputConverter.ResinWriter
- java.lang.Object
-
- java.io.Writer
-
- com.opensymphony.module.sitemesh.util.OutputConverter.ResinWriter
-
- All Implemented Interfaces:
Closeable
,Flushable
,Appendable
,AutoCloseable
- Enclosing class:
- OutputConverter
static class OutputConverter.ResinWriter extends Writer
To get internationalised characters to work on Resin, some conversions need to take place.
-
-
Constructor Summary
Constructors Constructor Description ResinWriter(Writer target)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
flush()
void
write(char[] cbuf, int off, int len)
-
-
-
Field Detail
-
target
private final Writer target
-
buffer
private final CharArrayWriter buffer
-
-
Constructor Detail
-
ResinWriter
public ResinWriter(Writer target)
-
-
Method Detail
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in classWriter
- Throws:
IOException
-
flush
public void flush() throws IOException
- Specified by:
flush
in interfaceFlushable
- Specified by:
flush
in classWriter
- Throws:
IOException
-
write
public void write(char[] cbuf, int off, int len) throws IOException
- Specified by:
write
in classWriter
- Throws:
IOException
-
-