Java in a Nutshell Online Quick Reference for Java 1.1
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; }