01: package java.io;
02:
03: public class CharArrayWriter extends Writer {
04: public CharArrayWriter() {
05: }
06:
07: public CharArrayWriter(int size) {
08: }
09:
10: public void close() {
11: }
12:
13: public void flush() {
14: }
15:
16: public void reset() {
17: }
18:
19: public int size() {
20: }
21:
22: public char[] toCharArray() {
23: }
24:
25: public String toString() {
26: }
27:
28: public void write(int oneChar) {
29: }
30:
31: public void write(char[] buffer, int offset, int len) {
32: }
33:
34: public void write(String str, int offset, int len) {
35: }
36:
37: public void writeTo(Writer out) throws IOException {
38: }
39:
40: private final void resize(int len) {
41: }
42:
43: protected char[] buf;
44: protected int count;
45: }
|