| java.lang.Object java.io.Writer java.io.FilterWriter org.apache.commons.io.output.ProxyWriter
ProxyWriter | public class ProxyWriter extends FilterWriter (Code) | | A Proxy stream which acts as expected, that is it passes the method
calls on to the proxied stream and doesn't change which methods are
being called. It is an alternative base class to FilterWriter
to increase reusability, because FilterWriter changes the
methods being called, such as write(char[]) to write(char[], int, int)
and write(String) to write(String, int, int).
author: Stephen Colebourne version: $Id: ProxyWriter.java 471628 2006-11-06 04:06:45Z bayard $ |
ProxyWriter | public ProxyWriter(Writer proxy)(Code) | | Constructs a new ProxyWriter.
Parameters: proxy - the Writer to delegate to |
|
|