package java.io; import org.checkerframework.checker.lock.qual.*; public class StringWriter extends Writer { public StringWriter() { throw new RuntimeException("skeleton method"); } public StringWriter(int a1) { throw new RuntimeException("skeleton method"); } public void write(int a1) { throw new RuntimeException("skeleton method"); } public void write(char[] a1, int a2, int a3) { throw new RuntimeException("skeleton method"); } public void write(String a1) { throw new RuntimeException("skeleton method"); } public void write(String a1, int a2, int a3) { throw new RuntimeException("skeleton method"); } public StringWriter append(CharSequence a1) { throw new RuntimeException("skeleton method"); } public StringWriter append(CharSequence a1, int a2, int a3) { throw new RuntimeException("skeleton method"); } public StringWriter append(char a1) { throw new RuntimeException("skeleton method"); } public String toString(@GuardSatisfied StringWriter this) { throw new RuntimeException("skeleton method"); } public StringBuffer getBuffer() { throw new RuntimeException("skeleton method"); } public void flush() { throw new RuntimeException("skeleton method"); } public void close() throws IOException { throw new RuntimeException("skeleton method"); } }