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

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

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

import java.io.InputStream;
import java.io.InputStreamReader;

/**
 * Input device reading from an {@link InputStream}.
 */
public class StreamInput extends ReaderInput {
	/**
	 * Constructor with stream forming the basis of this input device.
	 * 
	 * @param in
	 *            the input stream to read from
	 */
	public StreamInput(InputStream in) {
		super(new InputStreamReader(in));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy