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

org.unix4j.io.StreamOutput Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
package org.unix4j.io;

import java.io.OutputStream;
import java.io.OutputStreamWriter;

/**
 * Output device writing to an {@link OutputStream}.
 */
public class StreamOutput extends WriterOutput {
	/**
	 * Constructor with stream to be written to.
	 * 
	 * @param out
	 *            the output stream to write to
	 */
	public StreamOutput(OutputStream out) {
		super(new OutputStreamWriter(out));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy