Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.io.Writer

Availability: JDK 1.1

public abstract class Writer extends Object {
   // Protected Constructors
      protected Writer();
      protected Writer(Object lock);
   // Protected Instance Variables
      protected Object lock;
   // Public Instance Methods
      public abstract void close() throws IOException;
      public abstract void flush() throws IOException;
      public void write(int c) throws IOException;
      public void write(char[] cbuf) throws IOException;
      public abstract void write(char[] cbuf, int off, int len) throws IOException;
      public void write(String str) throws IOException;
      public void write(String str, int off, int len) throws IOException;
}
Extended By:
BufferedWriter, CharArrayWriter, FilterWriter, OutputStreamWriter, PipedWriter, PrintWriter, StringWriter.
Passed To:
BufferedWriter.BufferedWriter(), CharArrayWriter.writeTo(), FilterWriter.FilterWriter(), PrintWriter.PrintWriter().
Type Of:
FilterWriter.out.

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