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!"); } }