Class RoutablePrintWriter.NullWriter
- java.lang.Object
-
- java.io.Writer
-
- com.opensymphony.module.sitemesh.filter.RoutablePrintWriter.NullWriter
-
- All Implemented Interfaces:
Closeable
,Flushable
,Appendable
,AutoCloseable
- Enclosing class:
- RoutablePrintWriter
private static class RoutablePrintWriter.NullWriter extends Writer
Just to keep super constructor for PrintWriter happy - it's never actually used.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
NullWriter()
-
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)
-
-
-
Method Detail
-
write
public void write(char[] cbuf, int off, int len) throws IOException
- Specified by:
write
in classWriter
- Throws:
IOException
-
flush
public void flush() throws IOException
- Specified by:
flush
in interfaceFlushable
- Specified by:
flush
in classWriter
- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in classWriter
- Throws:
IOException
-
-