package java.io; import org.checkerframework.checker.nullness.qual.Nullable; @Deprecated public class StringBufferInputStream extends InputStream { public StringBufferInputStream(String a1) { throw new RuntimeException("skeleton method"); } public synchronized int read() { throw new RuntimeException("skeleton method"); } public synchronized int read(byte[] a1, int a2, int a3) { throw new RuntimeException("skeleton method"); } public synchronized long skip(long a1) { throw new RuntimeException("skeleton method"); } public synchronized int available() { throw new RuntimeException("skeleton method"); } public synchronized void reset() { throw new RuntimeException("skeleton method"); } }