blob: 84c43023b5d6ba1d906665d9357e62aa6f8983c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package java.io;
public class StringWriter
extends java.io.Writer
{
public StringWriter() { throw new RuntimeException("Stub!"); }
public StringWriter(int initialSize) { throw new RuntimeException("Stub!"); }
public void close() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public void flush() { throw new RuntimeException("Stub!"); }
public java.lang.StringBuffer getBuffer() { throw new RuntimeException("Stub!"); }
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
public void write(char[] chars, int offset, int count) { throw new RuntimeException("Stub!"); }
public void write(int oneChar) { throw new RuntimeException("Stub!"); }
public void write(java.lang.String str) { throw new RuntimeException("Stub!"); }
public void write(java.lang.String str, int offset, int count) { throw new RuntimeException("Stub!"); }
public java.io.StringWriter append(char c) { throw new RuntimeException("Stub!"); }
public java.io.StringWriter append(java.lang.CharSequence csq) { throw new RuntimeException("Stub!"); }
public java.io.StringWriter append(java.lang.CharSequence csq, int start, int end) { throw new RuntimeException("Stub!"); }
}
|