Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.io.FilterWriter

Availability: JDK 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()
}

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.