com.samskivert.super.java.io.Writer 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 Writer} to satisfy GWT.
*/
public abstract class Writer
{
public abstract void write (String text) throws IOException;
}