com.opensymphony.module.sitemesh.filter
Class RoutablePrintWriter
java.lang.Object
java.io.Writer
java.io.PrintWriter
com.opensymphony.module.sitemesh.filter.RoutablePrintWriter
- All Implemented Interfaces:
- Closeable, Flushable, Appendable
public class RoutablePrintWriter
- extends PrintWriter
Provides a PrintWriter that routes through to another PrintWriter, however the destination
can be changed at any point. The destination can be passed in using a factory, so it will not be created
until it's actually needed.
- Version:
- $Revision: 1.1 $
- Author:
- Joe Walnes
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
destination
private PrintWriter destination
factory
private RoutablePrintWriter.DestinationFactory factory
RoutablePrintWriter
public RoutablePrintWriter(RoutablePrintWriter.DestinationFactory factory)
getDestination
private PrintWriter getDestination()
updateDestination
public void updateDestination(RoutablePrintWriter.DestinationFactory factory)
close
public void close()
- Specified by:
close
in interface Closeable
- Overrides:
close
in class PrintWriter
println
public void println(Object x)
- Overrides:
println
in class PrintWriter
println
public void println(String x)
- Overrides:
println
in class PrintWriter
println
public void println(char[] x)
- Overrides:
println
in class PrintWriter
println
public void println(double x)
- Overrides:
println
in class PrintWriter
println
public void println(float x)
- Overrides:
println
in class PrintWriter
println
public void println(long x)
- Overrides:
println
in class PrintWriter
println
public void println(int x)
- Overrides:
println
in class PrintWriter
println
public void println(char x)
- Overrides:
println
in class PrintWriter
println
public void println(boolean x)
- Overrides:
println
in class PrintWriter
println
public void println()
- Overrides:
println
in class PrintWriter
print
public void print(Object obj)
- Overrides:
print
in class PrintWriter
print
public void print(String s)
- Overrides:
print
in class PrintWriter
print
public void print(char[] s)
- Overrides:
print
in class PrintWriter
print
public void print(double d)
- Overrides:
print
in class PrintWriter
print
public void print(float f)
- Overrides:
print
in class PrintWriter
print
public void print(long l)
- Overrides:
print
in class PrintWriter
print
public void print(int i)
- Overrides:
print
in class PrintWriter
print
public void print(char c)
- Overrides:
print
in class PrintWriter
print
public void print(boolean b)
- Overrides:
print
in class PrintWriter
write
public void write(String s)
- Overrides:
write
in class PrintWriter
write
public void write(String s,
int off,
int len)
- Overrides:
write
in class PrintWriter
write
public void write(char[] buf)
- Overrides:
write
in class PrintWriter
write
public void write(char[] buf,
int off,
int len)
- Overrides:
write
in class PrintWriter
write
public void write(int c)
- Overrides:
write
in class PrintWriter
checkError
public boolean checkError()
- Overrides:
checkError
in class PrintWriter
flush
public void flush()
- Specified by:
flush
in interface Flushable
- Overrides:
flush
in class PrintWriter