All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.samskivert.super.java.io.Reader Maven / Gradle / Ivy

There is a newer version: 1.16
Show newest version
//
// $Id$

package java.io;

/**
 * A minimal version of {@code Reader} to satisfy GWT.
 */
public abstract class Reader
{
    public abstract int read () throws IOException;
    public abstract void close () throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy