com.samskivert.super.java.io.Reader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmustache Show documentation
Show all versions of jmustache Show documentation
A Java implementation of the Mustache templating language.
//
// $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;
}