01: package java.io;
02:
03: public class BufferedWriter extends Writer {
04: char[] buffer;
05: int count;
06:
07: public BufferedWriter(Writer out) {
08: }
09:
10: public BufferedWriter(Writer out, int size) {
11: }
12:
13: public void close() throws IOException {
14: }
15:
16: public void flush() throws IOException {
17: }
18:
19: public void newLine() throws IOException {
20: }
21:
22: public void write(int oneChar) throws IOException {
23: }
24:
25: public void write(char[] buf, int offset, int len)
26: throws IOException {
27: }
28:
29: public void write(String str, int offset, int len)
30: throws IOException {
31: }
32:
33: private void localFlush() throws IOException {
34: }
35: }
|