package java.io; import org.checkerframework.checker.nullness.qual.Nullable; @org.checkerframework.framework.qual.DefaultQualifier(org.checkerframework.checker.nullness.qual.NonNull.class) public class CharArrayReader extends Reader { public CharArrayReader(char[] a1) { throw new RuntimeException("skeleton method"); } public CharArrayReader(char[] a1, int a2, int a3) { 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 long skip(long a1) throws IOException { throw new RuntimeException("skeleton method"); } public boolean ready() throws IOException { throw new RuntimeException("skeleton method"); } public boolean markSupported() { 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"); } public void close() { throw new RuntimeException("skeleton method"); } }