Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public class BufferedWriter extends Writer { // Public Constructors public BufferedWriter(Writer out); public BufferedWriter(Writer out, int sz); // Public Instance Methods public void close() throws IOException; // Defines Writer.close() public void flush() throws IOException; // Defines Writer.flush() public void newLine() throws IOException; 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 s, int off, int len) throws IOException; // Overrides Writer.write() }