package java.io; import org.checkerframework.checker.nullness.qual.Nullable; public class LineNumberReader extends BufferedReader { public LineNumberReader(Reader a1) { super(a1); throw new RuntimeException("skeleton method"); } public LineNumberReader(Reader a1, int a2) { super(a1); throw new RuntimeException("skeleton method"); } public void setLineNumber(int a1) { throw new RuntimeException("skeleton method"); } public int getLineNumber() { throw new RuntimeException("skeleton method"); } public int read() throws IOException { throw new RuntimeException("skeleton method"); } public int read(char[] a1, int a2, int a3) throws IOException { throw new RuntimeException("skeleton method"); } public @Nullable String readLine() throws IOException { throw new RuntimeException("skeleton method"); } public long skip(long a1) throws IOException { throw new RuntimeException("skeleton method"); } public void mark(int a1) throws IOException { throw new RuntimeException("skeleton method"); } public void reset() throws IOException { throw new RuntimeException("skeleton method"); } }