Class java.io.FilterWriter (1.1)


public abstract class FilterWriter extends Writer {
  // Protected Constructor
    protected FilterWriter(Writer out);
  // Protected Instance Variables
    protected Writer out;
  // Public Instance Methods
    public void close( ) throws IOException;  // Defines Writer.close( )
    public void flush( ) throws IOException;  // Defines Writer.flush( )
    public void write(int c) throws IOException;  // Overrides Writer.write( )
    public void write(char[ ] cbuf, int off, int len) throws IOException;  // Defines Writer.write( )
    public void write(String str, int off, int len) throws IOException;  // Overrides Writer.write( )
}