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

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

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

package java.io;

/**
 * A basic implementation of {@code StringReader} for use in GWT.
 */
public class StringWriter extends Writer
{
    public void write (String text) throws IOException {
        _buf.append(text);
    }

    @Override public String toString () {
        return _buf.toString();
    }

    protected final StringBuilder _buf = new StringBuilder();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy